From b0201bcfbf57cd3abf75746c149e1eb70ba19c55 Mon Sep 17 00:00:00 2001 From: Sebastien Beal Date: Sun, 26 May 2013 11:52:45 +0900 Subject: [PATCH] Fix doc typo in UserViewSet example --- docs/api-guide/viewsets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/viewsets.md b/docs/api-guide/viewsets.md index cd92dc585..31570d743 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.