From 4648152d6135726e1e7f9953e84946a0c562bbef Mon Sep 17 00:00:00 2001 From: Ben Hoff Date: Wed, 25 Feb 2015 04:53:40 -0600 Subject: [PATCH] fixed commas in tutorial 6 --- docs/tutorial/6-viewsets-and-routers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/6-viewsets-and-routers.md b/docs/tutorial/6-viewsets-and-routers.md index 63dff73fc..6e9181868 100644 --- a/docs/tutorial/6-viewsets-and-routers.md +++ b/docs/tutorial/6-viewsets-and-routers.md @@ -30,7 +30,7 @@ Next we're going to replace the `SnippetList`, `SnippetDetail` and `SnippetHighl class SnippetViewSet(viewsets.ModelViewSet): """ This viewset automatically provides `list`, `create`, `retrieve`, - `update` and `destroy` actions. + `update`, and `destroy` actions. Additionally we also provide an extra `highlight` action. """