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:27:35 -0400
commitb9daa4f0e12908c9f0736e2784913da3974d07b0 (patch)
treeb04c96ffa192fb3f781043b93578b5cb5a575b8c /docs
parent44185591385ac278b66e2007208c8656f323f9b6 (diff)
Fixed a typo in the admin documentation.
The 'app' subpackage does not exist, should be 'app'.
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 1b137f6448..d878058071 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -2491,7 +2491,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.