aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Groß2013-08-13 01:14:20 -0700
committerStephan Groß2013-08-13 01:14:20 -0700
commit8da18fbbc44e38dae3772c8922b1e7ff40287fb8 (patch)
tree4f2874aaacb00ecfae6392cd0b92783ba93a4bc8
parent5a03e2c318cd9daf9e50ca22de966e41c95d506d (diff)
parent770d496307f1f9d3c8a95a167a506e59302f0de4 (diff)
downloaddjango-rest-framework-8da18fbbc44e38dae3772c8922b1e7ff40287fb8.tar.bz2
Merge pull request #1033 from martync/patch-1
Fix typo
-rw-r--r--docs/tutorial/6-viewsets-and-routers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/6-viewsets-and-routers.md b/docs/tutorial/6-viewsets-and-routers.md
index f16add39..8a1a1ae0 100644
--- a/docs/tutorial/6-viewsets-and-routers.md
+++ b/docs/tutorial/6-viewsets-and-routers.md
@@ -10,7 +10,7 @@ A `ViewSet` class is only bound to a set of method handlers at the last moment,
Let's take our current set of views, and refactor them into view sets.
-First of all let's refactor our `UserList` and `UserDetail` views into a single `UserViewSet`. We can remove the two views, and replace then with a single class:
+First of all let's refactor our `UserList` and `UserDetail` views into a single `UserViewSet`. We can remove the two views, and replace them with a single class:
from rest_framework import viewsets