From 05f914c6316d5559ce37a81a4e12d406f803cc23 Mon Sep 17 00:00:00 2001
From: Thomas Thurman <thomas.thurman@hds.com>
Date: Mon, 29 Apr 2013 14:30:51 +0100
Subject: [PATCH] Corrected "it's" to "its" when used possessively.
---
docs/ref/contrib/gis/geos.txt | 2 +-
docs/ref/contrib/gis/install/geolibs.txt | 2 +-
docs/ref/templates/builtins.txt | 2 +-
docs/releases/1.3-alpha-1.txt | 2 +-
docs/topics/forms/media.txt | 2 +-
docs/topics/logging.txt | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt
index 4d44638..12e4e55 100644
a
|
b
|
include the SRID value (in other words, EWKB).
|
845 | 845 | .. class:: WKBWriter |
846 | 846 | |
847 | 847 | ``WKBWriter`` provides the most control over its output. By default it |
848 | | returns OGC-compliant WKB when it's ``write`` method is called. However, |
| 848 | returns OGC-compliant WKB when its ``write`` method is called. However, |
849 | 849 | it has properties that allow for the creation of EWKB, a superset of the |
850 | 850 | WKB standard that includes additional information. |
851 | 851 | |
diff --git a/docs/ref/contrib/gis/install/geolibs.txt b/docs/ref/contrib/gis/install/geolibs.txt
index 74ebf6a..c9a1b40 100644
a
|
b
|
Configure, make and install::
|
194 | 194 | |
195 | 195 | .. note:: |
196 | 196 | |
197 | | Because GeoDjango has it's own Python interface, the preceding instructions |
| 197 | Because GeoDjango has its own Python interface, the preceding instructions |
198 | 198 | do not build GDAL's own Python bindings. The bindings may be built by |
199 | 199 | adding the ``--with-python`` flag when running ``configure``. See |
200 | 200 | `GDAL/OGR In Python`__ for more information on GDAL's bindings. |
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 474fb4d..e080003 100644
a
|
b
|
just declare the cycle, but not output the first value, you can add a
|
176 | 176 | |
177 | 177 | This will output a list of ``<tr>`` elements with ``class`` |
178 | 178 | alternating between ``row1`` and ``row2``; the subtemplate will have |
179 | | access to ``rowcolors`` in it's context that matches the class of the |
| 179 | access to ``rowcolors`` in its context that matches the class of the |
180 | 180 | ``<tr>`` that encloses it. If the ``silent`` keyword were to be |
181 | 181 | omitted, ``row1`` would be emitted as normal text, outside the |
182 | 182 | ``<tr>`` element. |
diff --git a/docs/releases/1.3-alpha-1.txt b/docs/releases/1.3-alpha-1.txt
index c71736d..42947d9 100644
a
|
b
|
To access this library, Django provides the
|
87 | 87 | ``django.utils.unittest`` module alias. If you are using Python |
88 | 88 | 2.7, or you have installed unittest2 locally, Django will map the |
89 | 89 | alias to the installed version of the unittest library. Otherwise, |
90 | | Django will use it's own bundled version of unittest2. |
| 90 | Django will use its own bundled version of unittest2. |
91 | 91 | |
92 | 92 | To use this alias, simply use:: |
93 | 93 | |
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt
index 98e70e5..c0d63bb 100644
a
|
b
|
basic Calendar widget from the example above::
|
146 | 146 | <script type="text/javascript" src="http://static.example.com/actions.js"></script> |
147 | 147 | <script type="text/javascript" src="http://static.example.com/whizbang.js"></script> |
148 | 148 | |
149 | | The FancyCalendar widget inherits all the media from it's parent widget. If |
| 149 | The FancyCalendar widget inherits all the media from its parent widget. If |
150 | 150 | you don't want media to be inherited in this way, add an ``extend=False`` |
151 | 151 | declaration to the media declaration:: |
152 | 152 | |
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index cb22a57..a31dc01 100644
a
|
b
|
issued on the ``project.interesting`` and
|
169 | 169 | ``project.interesting.stuff`` loggers. |
170 | 170 | |
171 | 171 | This propagation can be controlled on a per-logger basis. If |
172 | | you don't want a particular logger to propagate to it's parents, you |
| 172 | you don't want a particular logger to propagate to its parents, you |
173 | 173 | can turn off this behavior. |
174 | 174 | |
175 | 175 | Making logging calls |