summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2007-02-28 22:01:52 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2007-02-28 22:01:52 +0000
commit7b0e321c557edaa2e08da1d4a8746eb8cbd5b283 (patch)
tree242eba8554321b6d82c748efd25cf8b20e9ce625 /docs
parenta81a6e9abef2302a6bfc3d2bf0c47013bfc87bb3 (diff)
Removed a stray colon in authentication.txt.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4650 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/authentication.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 5186c5672c..aff336f67a 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -398,7 +398,7 @@ To do this, add the following line to your URLconf::
(r'^accounts/login/$', 'django.contrib.auth.views.login'),
-Here's what ``django.contrib.auth.views.login`` does::
+Here's what ``django.contrib.auth.views.login`` does:
* If called via ``GET``, it displays a login form that POSTs to the same
URL. More on this in a bit.