summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-06-05 08:24:53 -0400
committerTim Graham <timograham@gmail.com>2015-06-05 08:24:53 -0400
commit2fbea621e68d3365679e45fa17b61d06aa8cdf76 (patch)
treeb664bd129c3a810c067a8aaf38130232cc75310c /docs/ref
parent5c35b4a8c90fbd5658352ef3ce69bcc7ba25324b (diff)
Capitalized "Python" in docs.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/migration-operations.txt2
-rw-r--r--docs/ref/models/database-functions.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt
index 31ea32ee9d..a5a74d3be0 100644
--- a/docs/ref/migration-operations.txt
+++ b/docs/ref/migration-operations.txt
@@ -305,7 +305,7 @@ model::
This is generally the operation you would use to create
:ref:`data migrations <data-migrations>`, run
custom data updates and alterations, and anything else you need access to an
-ORM and/or python code for.
+ORM and/or Python code for.
If you're upgrading from South, this is basically the South pattern as an
operation - one or two methods for forwards and backwards, with an ORM and
diff --git a/docs/ref/models/database-functions.txt b/docs/ref/models/database-functions.txt
index 62b65b8858..3477bd3263 100644
--- a/docs/ref/models/database-functions.txt
+++ b/docs/ref/models/database-functions.txt
@@ -57,7 +57,7 @@ Usage examples::
.. warning::
- A python value passed to ``Coalesce`` on MySQL may be converted to an
+ A Python value passed to ``Coalesce`` on MySQL may be converted to an
incorrect type unless explicitly cast to the correct database type:
>>> from django.db.models.expressions import RawSQL
@@ -121,7 +121,7 @@ Usage example::
>>> comments = Comment.objects.annotate(last_updated=Greatest('modified', 'blog__modified'))
>>> annotated_comment = comments.get()
-``annotated_comment.last_updated`` will be the most recent of
+``annotated_comment.last_updated`` will be the most recent of
``blog.modified`` and ``comment.modified``.
.. warning::