From 01757192e670c298169150d1030c011741af9444 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 24 Mar 2009 11:40:12 +0000 Subject: [PATCH] Fixed #10570 -- Grammar fix for Manager docs. Thanks to adamv. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10147 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/db/managers.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt index 371ded99cf..0e591e799c 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: