aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2013-12-04 14:59:28 +0000
committerTom Christie2013-12-04 14:59:28 +0000
commit6446b44f01f06d7f5482798a16025ebcea75c024 (patch)
tree7edd3614a2a9b75d65ed05497a835302b5dcadc3 /docs/api-guide
parentde5b9e39dd4c21f4dcceb7cf13c7366b0fb74ec9 (diff)
parent04a43ddca565d96848c25a1d1879c9e7a53a7b6c (diff)
downloaddjango-rest-framework-6446b44f01f06d7f5482798a16025ebcea75c024.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/api-guide')
-rw-r--r--docs/api-guide/viewsets.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/viewsets.md b/docs/api-guide/viewsets.md
index 1062cb32..4fdd9364 100644
--- a/docs/api-guide/viewsets.md
+++ b/docs/api-guide/viewsets.md
@@ -170,7 +170,7 @@ The actions provided by the `ModelViewSet` class are `.list()`, `.retrieve()`,
#### Example
-Because `ModelViewSet` extends `GenericAPIView`, you'll normally need to provide at least the `queryset` and `serializer_class` attributes. For example:
+Because `ModelViewSet` extends `GenericAPIView`, you'll normally need to provide at least the `queryset` and `serializer_class` attributes, or the `model` attribute shortcut. For example:
class AccountViewSet(viewsets.ModelViewSet):
"""