summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-03-24 12:01:23 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-03-24 12:01:23 +0000
commitc2e4e54eb695b895c830f636251a4318826021ba (patch)
tree9a4aacd1ab65db7b9a5ee9eda8c68cc58156c822 /docs
parentfae6702ea1b1c752381e5c49ca3ce99a3c03feb0 (diff)
[1.0.X] Fixed #10570 -- Grammar fix for Manager docs. Thanks to adamv.
Merge of r10147 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10156 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/managers.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt
index 2ace9c1408..8b7f7889fa 100644
--- a/docs/topics/db/managers.txt
+++ b/docs/topics/db/managers.txt
@@ -12,8 +12,8 @@ A ``Manager`` is the interface through which database query operations are
provided to Django models. At least one ``Manager`` exists for every model in
a Django application.
-The way ``Manager`` classes work is documented :ref:`topics-db-queries`; this
-document specifically touches on model options that customize ``Manager``
+The way ``Manager`` classes work is documented in :ref:`topics-db-queries`;
+this document specifically touches on model options that customize ``Manager``
behavior.
.. _manager-names: