aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/views.md
diff options
context:
space:
mode:
authorMatthias Jacob2013-07-10 19:02:38 +0200
committerMatthias Jacob2013-07-10 19:02:38 +0200
commit453b7b03dd5ee43cd4e63d05258116fd9f005fb3 (patch)
treea90621bb47b5d5d37691b525ad6f5d64215313d7 /docs/api-guide/views.md
parent77364d2b84aa20030f579076a4b2a92a2c9d5dd4 (diff)
downloaddjango-rest-framework-453b7b03dd5ee43cd4e63d05258116fd9f005fb3.tar.bz2
Fix broken links in views doc
Diffstat (limited to 'docs/api-guide/views.md')
-rw-r--r--docs/api-guide/views.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-guide/views.md b/docs/api-guide/views.md
index 37ebd55f..683222d1 100644
--- a/docs/api-guide/views.md
+++ b/docs/api-guide/views.md
@@ -137,11 +137,11 @@ The core of this functionality is the `api_view` decorator, which takes a list o
return Response({"message": "Hello, world!"})
-This view will use the default renderers, parsers, authentication classes etc specified in the [settings](settings).
+This view will use the default renderers, parsers, authentication classes etc specified in the [settings].
## API policy decorators
-To override the default settings, REST framework provides a set of additional decorators which can be added to your views. These must come *after* (below) the `@api_view` decorator. For example, to create a view that uses a [throttle](throttling) to ensure it can only be called once per day by a particular user, use the `@throttle_classes` decorator, passing a list of throttle classes:
+To override the default settings, REST framework provides a set of additional decorators which can be added to your views. These must come *after* (below) the `@api_view` decorator. For example, to create a view that uses a [throttle][throttling] to ensure it can only be called once per day by a particular user, use the `@throttle_classes` decorator, passing a list of throttle classes:
from rest_framework.decorators import api_view, throttle_classes
from rest_framework.throttling import UserRateThrottle