aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples
diff options
context:
space:
mode:
authorMarko Tibold2012-01-02 18:42:22 +0100
committerMarko Tibold2012-01-02 18:42:22 +0100
commit7a3d97a2fc3abeb8a22d7ddb0eafbd4cf34e9f4e (patch)
tree14e1574e2608278832810bf75283bf96fcac20e5 /docs/examples
parent9871532746aee7e0f5796ae24cfb44c878759c38 (diff)
downloaddjango-rest-framework-7a3d97a2fc3abeb8a22d7ddb0eafbd4cf34e9f4e.tar.bz2
:mod: directive is nicer here
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/permissions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/permissions.rst b/docs/examples/permissions.rst
index cfd7b446..eafc3255 100644
--- a/docs/examples/permissions.rst
+++ b/docs/examples/permissions.rst
@@ -60,7 +60,7 @@ both::
permissions = (PerUserThrottling, Isauthenticated)
-To see what other throttles are available, have a look at the :doc:`../library/permissions` module.
+To see what other throttles are available, have a look at the :mod:`permissions` module.
-If you want to implement your own authentication method, then refer to the :doc:`../library/authentication`
+If you want to implement your own authentication method, then refer to the :mod:`authentication`
module.