diff options
| author | Jamie Matthews | 2012-10-25 14:22:36 +0100 | 
|---|---|---|
| committer | Jamie Matthews | 2012-10-25 14:22:36 +0100 | 
| commit | 41d27b1a307132fea42fb104a8d7d266ea9e90d1 (patch) | |
| tree | 2f4af0a6d2cd827bc205f49648c4934dafceb0f7 /docs/api-guide/generic-views.md | |
| parent | 1ceca69e5fa64344f1a039526fb653bf6bbd8a9d (diff) | |
| download | django-rest-framework-41d27b1a307132fea42fb104a8d7d266ea9e90d1.tar.bz2 | |
Fix section headings in generic views docs
Diffstat (limited to 'docs/api-guide/generic-views.md')
| -rw-r--r-- | docs/api-guide/generic-views.md | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md index 7ca0f905..97b4441f 100644 --- a/docs/api-guide/generic-views.md +++ b/docs/api-guide/generic-views.md @@ -119,17 +119,17 @@ Extends: [SingleObjectAPIView], [RetrieveModelMixin], [UpdateModelMixin], [Destr  Each of the generic views provided is built by combining one of the base views below, with one or more mixin classes. -## BaseAPIView +## GenericAPIView  Extends REST framework's `APIView` class, adding support for serialization of model instances and model querysets. -## MultipleObjectBaseAPIView +## MultipleObjectAPIView  Provides a base view for acting on a single object, by combining REST framework's `APIView`, and Django's [MultipleObjectMixin].  **See also:** ccbv.co.uk documentation for [MultipleObjectMixin][multiple-object-mixin-classy]. -## SingleObjectBaseAPIView +## SingleObjectAPIView  Provides a base view for acting on a single object, by combining REST framework's `APIView`, and Django's [SingleObjectMixin]. @@ -151,7 +151,7 @@ Should be mixed in with [MultipleObjectAPIView].  Provides a `.create(request, *args, **kwargs)` method, that implements creating and saving a new model instance. -Should be mixed in with any [BaseAPIView]. +Should be mixed in with any [GenericAPIView].  ## RetrieveModelMixin | 
