diff options
| author | Tom Christie | 2012-11-09 13:39:40 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-11-09 13:39:40 +0000 |
| commit | 9aaeeacdfebc244850e82469e4af45af252cca4d (patch) | |
| tree | 518bff58a38ba6a01185f20f8aec4fd8b1ac5d53 /docs | |
| parent | 71ef58e154330924ec9d22b1736926ce9d373efe (diff) | |
| download | django-rest-framework-9aaeeacdfebc244850e82469e4af45af252cca4d.tar.bz2 | |
Minor docs tweak.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api-guide/filtering.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/filtering.md b/docs/api-guide/filtering.md index 92e312ab..14ab9a26 100644 --- a/docs/api-guide/filtering.md +++ b/docs/api-guide/filtering.md @@ -163,7 +163,7 @@ Note that you can use both an overridden `.get_queryset()` and generic filtering You can also provide your own generic filtering backend, or write an installable app for other developers to use. -To do so override `BaseFilterBackend`, and override the `.filter_queryset(self, request, queryset, view)` method. +To do so override `BaseFilterBackend`, and override the `.filter_queryset(self, request, queryset, view)` method. The method should return a new, filtered queryset. To install the filter backend, set the `'FILTER_BACKEND'` key in your `'REST_FRAMEWORK'` setting, using the dotted import path of the filter backend class. |
