Django

Code

Changeset 7300

Show
Ignore:
Timestamp:
03/18/08 14:02:24 (8 months ago)
Author:
ubernostrum
Message:

Fixed #6683: corrected some typos in docs/newforms.txt. Thanks PJCrosier for the patch, and Atul Varma for spotting the errors.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/newforms.txt

    r7298 r7300  
    15971597These methods are run in the order given above, one field at a time.  That is, 
    15981598for each field in the form (in the order they are declared in the form 
    1599 definition), the ``Field.clean()`` method (or it's override) is run, then 
     1599definition), the ``Field.clean()`` method (or its override) is run, then 
    16001600``clean_<fieldname>()``. Finally, once those two methods are run for every 
    1601 field, the ``Form.clean()`` method, or it's override, is executed. 
     1601field, the ``Form.clean()`` method, or its override, is executed. 
    16021602 
    16031603As mentioned above, any of these methods can raise a ``ValidationError``. For 
     
    17211721 
    17221722This form will include three default TextInput widgets, with default rendering - 
    1723 no CSS class, no extra attributes. This means that the inputs boxes provided for 
     1723no CSS class, no extra attributes. This means that the input boxes provided for 
    17241724each widget will be rendered exactly the same:: 
    17251725