Ticket #20327: 0001-Corrected-it-s-to-its-when-used-possessively.patch

File 0001-Corrected-it-s-to-its-when-used-possessively.patch, 4.3 KB (added by thomas.thurman@…, 11 years ago)

Patch

  • docs/ref/contrib/gis/geos.txt

    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).  
    845845.. class:: WKBWriter
    846846
    847847``WKBWriter`` provides the most control over its output.  By default it
    848 returns OGC-compliant WKB when it's ``write`` method is called.  However,
     848returns OGC-compliant WKB when its ``write`` method is called.  However,
    849849it has properties that allow for the creation of EWKB, a superset of the
    850850WKB standard that includes additional information.
    851851
  • docs/ref/contrib/gis/install/geolibs.txt

    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::  
    194194
    195195.. note::
    196196
    197    Because GeoDjango has it's own Python interface, the preceding instructions
     197   Because GeoDjango has its own Python interface, the preceding instructions
    198198   do not build GDAL's own Python bindings.  The bindings may be built by
    199199   adding the ``--with-python`` flag when running ``configure``.  See
    200200   `GDAL/OGR In Python`__ for more information on GDAL's bindings.
  • docs/ref/templates/builtins.txt

    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  
    176176
    177177This will output a list of ``<tr>`` elements with ``class``
    178178alternating between ``row1`` and ``row2``; the subtemplate will have
    179 access to ``rowcolors`` in it's context that matches the class of the
     179access to ``rowcolors`` in its context that matches the class of the
    180180``<tr>`` that encloses it. If the ``silent`` keyword were to be
    181181omitted, ``row1`` would be emitted as normal text, outside the
    182182``<tr>`` element.
  • docs/releases/1.3-alpha-1.txt

    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  
    8787``django.utils.unittest`` module alias. If you are using Python
    88882.7, or you have installed unittest2 locally, Django will map the
    8989alias to the installed version of the unittest library. Otherwise,
    90 Django will use it's own bundled version of unittest2.
     90Django will use its own bundled version of unittest2.
    9191
    9292To use this alias, simply use::
    9393
  • docs/topics/forms/media.txt

    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::  
    146146    <script type="text/javascript" src="http://static.example.com/actions.js"></script>
    147147    <script type="text/javascript" src="http://static.example.com/whizbang.js"></script>
    148148
    149 The FancyCalendar widget inherits all the media from it's parent widget. If
     149The FancyCalendar widget inherits all the media from its parent widget. If
    150150you don't want media to be inherited in this way, add an ``extend=False``
    151151declaration to the media declaration::
    152152
  • docs/topics/logging.txt

    diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
    index cb22a57..a31dc01 100644
    a b issued on the ``project.interesting`` and  
    169169``project.interesting.stuff`` loggers.
    170170
    171171This 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
     172you don't want a particular logger to propagate to its parents, you
    173173can turn off this behavior.
    174174
    175175Making logging calls
Back to Top