Commit 9f71bef7 authored by Timo Graham's avatar Timo Graham
Browse files

[1.3.X] Fixed #16090, #16091 - Typos in docs; thanks teraom.

Backport of r16300 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16302 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent d2abec53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -431,7 +431,7 @@ FormMixin

    .. method:: get_form_kwargs()

        Build the keyword arguments requried to instanciate an the form.
        Build the keyword arguments required to instantiate the form.

        The ``initial`` argument is set to :meth:`.get_initial`. If the
        request is a ``POST`` or ``PUT``, the request data (``request.POST``
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ There are three steps involved in validating a model:
    2. Validate the model as a whole
    3. Validate the field uniqueness

All three steps are performed when you call by a model's
All three steps are performed when you call a model's
``full_clean()`` method.

When you use a ``ModelForm``, the call to ``is_valid()`` will perform