From 17e191a123cc2593d50f2037d21ae35433c41560 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 1 Jan 2010 21:37:53 +0000 Subject: [PATCH] Fixed #12383 - Typo fix for authentication documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12054 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/auth.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt index 8aae4f5e73..9874135b02 100644 --- a/docs/topics/auth.txt +++ b/docs/topics/auth.txt @@ -34,7 +34,7 @@ Authentication support is bundled as a Django application in 1. Put ``'django.contrib.auth'`` and ``'django.contrib.contenttypes'`` in your :setting:`INSTALLED_APPS` setting. - (The :class:`~django.contrib.auth.models.Permisson` model in + (The :class:`~django.contrib.auth.models.Permission` model in :mod:`django.contrib.auth` depends on :mod:`django.contrib.contenttypes`.) 2. Run the command ``manage.py syncdb``.