summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-11-24 16:28:29 -0500
committerTim Graham <timograham@gmail.com>2013-11-24 16:28:29 -0500
commit03bc0a8ac5b465a9a1ec88dedb0a2f4bd91dd547 (patch)
treed49502f599c212dcbb3276d39ab58a11a13b7091 /docs/ref
parentbfe7377adbc0d10dc553a317671c193dce692ad3 (diff)
Fixed typo in previous commit; refs #21490.
Diffstat (limited to 'docs/ref')
-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 93476325af..3313f99250 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -2522,7 +2522,7 @@ that instance as a ``current_app`` hint to the reverse call. For example,
if you specifically wanted the admin view from the admin instance named
``custom``, you would need to call::
- >>> change_url = urlresolvers.reverse('custom:polls_choice_change',
+ >>> change_url = urlresolvers.reverse('admin:polls_choice_change',
... args=(c.id,), current_app='custom')
For more details, see the documentation on :ref:`reversing namespaced URLs