aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTom Christie2013-09-22 23:32:48 -0700
committerTom Christie2013-09-22 23:32:48 -0700
commit97dd78d88c4a62dd68041cda9e3031764f3e77bf (patch)
treef2fbdef199bfdb5f315dc9195af3dbb0fabcb18c /docs
parentd9a8bc08929de0163b8fbb87dc9a3af685330eaf (diff)
parentde6e7accef0f144f4bcae9618604d462b1d9d321 (diff)
downloaddjango-rest-framework-97dd78d88c4a62dd68041cda9e3031764f3e77bf.tar.bz2
Merge pull request #1124 from johnmee/patch-1
Mindnumbingly trivial single-char typo.
Diffstat (limited to 'docs')
-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.