Django

Code

Changeset 5468

Show
Ignore:
Timestamp:
06/12/07 21:22:26 (2 years ago)
Author:
mtredinnick
Message:

Fixed #4547 -- Trivial typo fixing time. Thanks, Grant Kelly.

Files:

Legend:

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

    r5460 r5468  
    12251225different purpose. Thee types of cleaning methods are run during form 
    12261226processing. These are normally executed when you call the ``is_valid()`` 
    1227 method on a form. There are other things that can kick of cleaning and 
     1227method on a form. There are other things that can trigger cleaning and 
    12281228validation (accessing the ``errors`` attribute or calling ``full_clean()`` 
    12291229directly), but normally they won't be needed. 
     
    12351235 
    12361236If you detect multiple errors during a cleaning method and wish to signal all 
    1237 of them to the form submittor, it is possible to pass a list of errors to the 
     1237of them to the form submitter, it is possible to pass a list of errors to the 
    12381238``ValidationError`` constructor. 
    12391239