aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2013-09-26 16:09:31 +0100
committerTom Christie2013-09-26 16:09:31 +0100
commit1fd83adb9c1f888ed05d5b6d570b5e37996f96ba (patch)
tree35fef6873d7c643aea1deb7cc903b179662eed4d /docs/tutorial/quickstart.md
parent75d6446c8799763dccde0f5f03fbcae39c18dc7f (diff)
parent57a51f790bdff6c1cf34f3c6d64b0bef3033d89e (diff)
downloaddjango-rest-framework-1fd83adb9c1f888ed05d5b6d570b5e37996f96ba.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index 06eec3c4..80bb9abb 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -85,7 +85,7 @@ Right, we'd better write some views then. Open `quickstart/views.py` and get ty
queryset = Group.objects.all()
serializer_class = GroupSerializer
-Rather that write multiple views we're grouping together all the common behavior into classes called `ViewSets`.
+Rather than write multiple views we're grouping together all the common behavior into classes called `ViewSets`.
We can easily break these down into individual views if we need to, but using viewsets keeps the view logic nicely organized as well as being very concise.