Author: mtredinnick Date: 2007-06-12 21:22:26 -0500 (Tue, 12 Jun 2007) New Revision: 5468
Modified: django/trunk/docs/newforms.txt Log: Fixed #4547 -- Trivial typo fixing time. Thanks, Grant Kelly. Modified: django/trunk/docs/newforms.txt =================================================================== --- django/trunk/docs/newforms.txt 2007-06-12 17:56:00 UTC (rev 5467) +++ django/trunk/docs/newforms.txt 2007-06-13 02:22:26 UTC (rev 5468) @@ -1224,7 +1224,7 @@ this process, there are various places you can change, each one serving a different purpose. Thee types of cleaning methods are run during form processing. These are normally executed when you call the ``is_valid()`` -method on a form. There are other things that can kick of cleaning and +method on a form. There are other things that can trigger cleaning and validation (accessing the ``errors`` attribute or calling ``full_clean()`` directly), but normally they won't be needed. @@ -1234,7 +1234,7 @@ method should return the cleaned (normalised) data as a Python object. If you detect multiple errors during a cleaning method and wish to signal all -of them to the form submittor, it is possible to pass a list of errors to the +of them to the form submitter, it is possible to pass a list of errors to the ``ValidationError`` constructor. The three types of cleaning methods are: --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
