summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-06-17 15:46:59 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-06-17 15:46:59 +0000
commitf410de010d344b0d2101307cfd0e6d85330f9db6 (patch)
treeb42f8a7c1676444d495ba82f8736e48cd29035b6 /docs
parent04df7022634cb9729cb0e9e86f6da244f24dd0b5 (diff)
Refs #7216 -- Corrected typo, removed comma, trimmed trailing whitespace, and fixed reST link in [7678].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7681 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/model-api.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 178f7548a2..93c2a34399 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -2011,8 +2011,8 @@ confuse the reverse URL matcher (because multiple patterns point to
the same view).
For that problem, Django has **named URL patterns**. Using a named
-URL patter, it's possible to give a name to a pattern, and then
-reference the name, rather than the view function. A named URL
+URL pattern, it's possible to give a name to a pattern, and then
+reference the name rather than the view function. A named URL
pattern is defined by replacing the pattern tuple by a call to
the ``url`` function)::
@@ -2033,7 +2033,7 @@ of the view name::
More details on named URL patterns can be found in `URL dispatch documentation`_.
-.. _URL dispatch: ../url_dispatch/#naming-url-patterns
+.. _URL dispatch documentation: ../url_dispatch/#naming-url-patterns
Executing custom SQL
--------------------