Commit c5306d4a authored by Marti Raudsepp's avatar Marti Raudsepp Committed by Tim Graham
Browse files

[1.6.x] Various documentation typo/spelling fixes

Errors detected by Topy (https://github.com/intgr/topy), all changes
verified by hand.

Backport of 11d453bc from master
parent 49f5a294
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -321,7 +321,7 @@ Ramiro Morales

Honza Král
    Honza first discovered Django in 2006 and started using it right away,
    first for school and personal projects and later in his full time job. He
    first for school and personal projects and later in his full-time job. He
    contributed various patches and fixes mostly to the newforms library,
    newforms admin and, through participation in the Google Summer of Code
    project, assisted in creating the :ref:`model validation
@@ -520,11 +520,10 @@ Marc Tamlyn
    documentation at DjangoCon EU 2012, and also helped to develop `CCBV`_, an
    additional class based view reference tool.

    Marc currently works at `Incuna Ltd`_, a digital healthcare agency in
    Marc is currently a full-time parent, part-time developer, and lives in
    Oxford, UK.

.. _CCBV: http://ccbv.co.uk/
.. _Incuna Ltd: http://incuna.com/

Baptiste Mispelon
    Baptiste discovered Django around the 1.2 version and promptly switched away
+1 −1
Original line number Diff line number Diff line
@@ -192,7 +192,7 @@ Our policy for new features is:
    release, not the development version.

Our preferred way for marking new features is by prefacing the features'
documentation with: "``.. versionadded:: X.Y``", followed by a a mandatory
documentation with: "``.. versionadded:: X.Y``", followed by a mandatory
blank line and an optional content (indented).

General improvements, or other changes to the APIs that should be emphasized
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ Handling errors in actions

If there are foreseeable error conditions that may occur while running your
action, you should gracefully inform the user of the problem. This means
handling exceptions and and using
handling exceptions and using
:meth:`django.contrib.admin.ModelAdmin.message_user` to display a user friendly
description of the problem in the response.

+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ respectively).
    in the :doc:`sessions documentation </topics/http/sessions>` on
    how to enable sessions.

We will use the :class:`SessionWizardView` in all examples but is is completely
We will use the :class:`SessionWizardView` in all examples but is completely
fine to use the :class:`CookieWizardView` instead. As with your
:class:`~django.forms.Form` classes, this :class:`WizardView` class can live
anywhere in your codebase, but convention is to put it in :file:`views.py`.
+1 −1
Original line number Diff line number Diff line
@@ -739,7 +739,7 @@ systems and coordinate transformation::
   .. attribute:: z

   Returns the Z coordinate of this point, or ``None`` if the
   the point does not have a Z coordinate::
   point does not have a Z coordinate::

       >>> OGRGeometry('POINT (1 2 3)').z
       3.0
Loading