aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/views.py
diff options
context:
space:
mode:
authorTom Christie2013-02-20 08:46:00 +0000
committerTom Christie2013-02-20 08:46:00 +0000
commit160d10d348bc44cb481d30592253ef7832210f4b (patch)
tree26b21e58b5eb9274468bc8d10a5d19b7417c3b23 /rest_framework/views.py
parentc5cf51cf511c84ab3e446376ff38170dcd421958 (diff)
downloaddjango-rest-framework-160d10d348bc44cb481d30592253ef7832210f4b.tar.bz2
Fix docstring
Diffstat (limited to 'rest_framework/views.py')
-rw-r--r--rest_framework/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rest_framework/views.py b/rest_framework/views.py
index 1e481c87..fa742582 100644
--- a/rest_framework/views.py
+++ b/rest_framework/views.py
@@ -211,13 +211,13 @@ class APIView(View):
def get_parsers(self):
"""
- Instantiates and returns the list of renderers that this view can use.
+ Instantiates and returns the list of parsers that this view can use.
"""
return [parser() for parser in self.parser_classes]
def get_authenticators(self):
"""
- Instantiates and returns the list of renderers that this view can use.
+ Instantiates and returns the list of authenticators that this view can use.
"""
return [auth() for auth in self.authentication_classes]