aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2013-05-08 10:17:27 +0200
committerTom Christie2013-05-08 10:17:27 +0200
commit673a7a496f185c78c0322b4350eb703b02d9c607 (patch)
tree056bb0feab19cc372a0c3b3758205e1d1278163a /docs/api-guide
parent42ba5b425bdefe1dc7cdebf7ae8e117c39b5a152 (diff)
downloaddjango-rest-framework-673a7a496f185c78c0322b4350eb703b02d9c607.tar.bz2
Update generic-views.md
Diffstat (limited to 'docs/api-guide')
-rwxr-xr-xdocs/api-guide/generic-views.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md
index a2f54b76..a30bfb21 100755
--- a/docs/api-guide/generic-views.md
+++ b/docs/api-guide/generic-views.md
@@ -160,7 +160,7 @@ You won't typically need to override the following methods, although you might n
* `get_serializer(self, instance=None, data=None, files=None, many=False, partial=False)` - Returns a serializer instance.
* `get_pagination_serializer(self, page)` - Returns a serializer instance to use with paginated data.
* `paginate_queryset(self, queryset)` - Paginate a queryset if required, either returning a page object, or `None` if pagination is not configured for this view.
-* `filter_queryset(self, queryset)` - Given a queryset, filter it with whichever filter backend is in use, returning a new queryset.
+* `filter_queryset(self, queryset)` - Given a queryset, filter it with whichever filter backends are in use, returning a new queryset.
---