diff options
| author | Tom Christie | 2013-05-26 00:44:53 -0700 | 
|---|---|---|
| committer | Tom Christie | 2013-05-26 00:44:53 -0700 | 
| commit | 7123f0b1e6b29778c41476341bd2370f60c279fa (patch) | |
| tree | 0fbc1c0f2e91b3a76959a34c18d37ac93fcf3a1e /docs | |
| parent | 2a38aa7291575aeb8b5444496ffad0b70dca3945 (diff) | |
| parent | b0201bcfbf57cd3abf75746c149e1eb70ba19c55 (diff) | |
| download | django-rest-framework-7123f0b1e6b29778c41476341bd2370f60c279fa.tar.bz2 | |
Merge pull request #889 from sebastibe/viewset-doc-typo
Fix doc typo in UserViewSet example
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api-guide/viewsets.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/viewsets.md b/docs/api-guide/viewsets.md index cd92dc58..31570d74 100644 --- a/docs/api-guide/viewsets.md +++ b/docs/api-guide/viewsets.md @@ -65,7 +65,7 @@ Both of these come with a trade-off.  Using regular views and URL confs is more  The default routers included with REST framework will provide routes for a standard set of create/retrieve/update/destroy style operations, as shown below: -    class UserViewSet(viewsets.VietSet): +    class UserViewSet(viewsets.ViewSet):          """          Example empty viewset demonstrating the standard          actions that will be handled by a router class. | 
