summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Arcos <david.arcos@gmail.com>2014-07-29 18:12:35 +0200
committerSimon Charette <charette.s@gmail.com>2014-07-29 12:29:32 -0400
commitfb8ddac27afa2720226051cb0daff47bd0377a49 (patch)
tree01340069c925449d3dfadf467371f5f5160a787a /docs
parent9abc36b626bb1902154adc5d02bb081556577ceb (diff)
[1.7.x] Fixed a typo in the admin documentation.
The 'app' subpackage does not exist, should be 'app'. Backport of b9daa4f0e1 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/admin/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index d7b251f404..a398db5fe8 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -2509,7 +2509,7 @@ In this example, we register the ``AdminSite`` instance
Note that you may not want autodiscovery of ``admin`` modules when using your
own ``AdminSite`` instance since you will likely be importing all the per-app
``admin`` modules in your ``myproject.admin`` module. This means you need to
-put ``'django.contrib.admin.app.SimpleAdminConfig'`` instead of
+put ``'django.contrib.admin.apps.SimpleAdminConfig'`` instead of
``'django.contrib.admin'`` in your :setting:`INSTALLED_APPS` setting.