From 7b0e321c557edaa2e08da1d4a8746eb8cbd5b283 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 28 Feb 2007 22:01:52 +0000 Subject: [PATCH] Removed a stray colon in authentication.txt. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4650 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/authentication.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.