From e205b96825df26a53229dea6fdd9ad70d9531888 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 7 Nov 2005 14:24:13 +0000 Subject: [PATCH] Fixed typo in docs/i18n.txt. Thanks, Esaj git-svn-id: http://code.djangoproject.com/svn/django/trunk@1121 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/i18n.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/i18n.txt b/docs/i18n.txt index ceda2ade83..8ab9a1f2cb 100644 --- a/docs/i18n.txt +++ b/docs/i18n.txt @@ -454,7 +454,7 @@ that sets a user's language preference and redirects back to the previous page. Activate this view by adding the following line to your URLconf:: - (r'^i18n/', include('django.conf.urls.i18n'), + (r'^i18n/', include('django.conf.urls.i18n')), (Note that this example makes the view available at ``/i18n/setlang/``.)