Commit e8161980 authored by Szczepan Cieślik's avatar Szczepan Cieślik Committed by Tim Graham
Browse files

Fixed docs typos.

parent 65b46265
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -163,13 +163,13 @@ production environment (that is, where :setting:`DEBUG` is set to ``False``):
        def my_function():
            ...

    .. admonition:: When using mutiple decorators
    .. admonition:: When using multiple decorators

        If the variable you want to hide is also a function argument (e.g.
        '``user``’ in the following example), and if the decorated function has
        mutiple decorators, then make sure to place ``@sensitive_variables`` at
        the top of the decorator chain. This way it will also hide the function
        argument as it gets passed through the other decorators::
        multiple decorators, then make sure to place ``@sensitive_variables``
        at the top of the decorator chain. This way it will also hide the
        function argument as it gets passed through the other decorators::

            @sensitive_variables('user', 'pw', 'cc')
            @some_decorator
+2 −2
Original line number Diff line number Diff line
@@ -414,9 +414,9 @@ Anssi Kääriäinen
Florian Apolloner
    Florian is currently studying Physics at the `Graz University of Technology`_.
    Soon after he started using Django he joined the `Ubuntuusers webteam`_ to
    work on *Inyoka*, the software powering the whole Ubuntusers site.
    work on *Inyoka*, the software powering the whole Ubuntuusers site.

    For the time beeing he lives in Graz, Austria (not Australia ;)).
    For the time being he lives in Graz, Austria (not Australia ;)).

    .. _Graz University of Technology: http://tugraz.at/
    .. _Ubuntuusers webteam: http://wiki.ubuntuusers.de/ubuntuusers/Webteam
+1 −1
Original line number Diff line number Diff line
@@ -537,7 +537,7 @@ details on these changes.
* ``django.db.models.fields.XMLField`` will be removed. This was
  deprecated as part of the 1.3 release. An accelerated deprecation
  schedule has been used because the field hasn't performed any role
  beyond that of a simple ``TextField`` since the removal of oldforms.
  beyond that of a simple ``TextField`` since the removal of ``oldforms``.
  All uses of ``XMLField`` can be replaced with ``TextField``.

* The undocumented ``mixin`` parameter to the ``open()`` method of
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ any time leading up to the actual release:
   are left for the upcoming release.

#. Check with the other committers to make sure they don't have any
   un-committed changes for the release.
   uncommitted changes for the release.

#. Proofread the release notes, including looking at the online
   version to catch any broken links or reST errors, and make sure the
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ different needs:
  trying to learn. Instead, details about individual classes, functions,
  methods, and modules are kept in the :doc:`reference </ref/index>`. This is
  where you'll turn to find the details of a particular function or
  whathaveyou.
  whatever you need.

* If you are interested in deploying a project for public use, our docs have
  :doc:`several guides</howto/deployment/index>` for various deployment
Loading