summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-08-04 12:29:42 -0700
committerTim Graham <timograham@gmail.com>2012-08-04 12:29:42 -0700
commit46589d0c6d01c1fcf842db297e3d26b59b5a264f (patch)
treeaa35acd91c1c6e589cf297bd096bc5be938eb075 /docs
parent865ff32b84316a416661abc3e3e15c753395486c (diff)
parent6f229d2d7a4621fd73e0a5d22b8b7d42dec9493e (diff)
Merge pull request #244 from mbrochh/master
Fixed small typo in class based view docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/class-based-views/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/class-based-views/index.txt b/docs/topics/class-based-views/index.txt
index 6c2848944c..1ac70e6938 100644
--- a/docs/topics/class-based-views/index.txt
+++ b/docs/topics/class-based-views/index.txt
@@ -87,7 +87,7 @@ Where class based views shine is when you want to do the same thing many times.
Suppose you're writing an API, and every view should return JSON instead of
rendered HTML.
-We can use create a mixin class to use in all of our views, handling the
+We can create a mixin class to use in all of our views, handling the
conversion to JSON once.
For example, a simple JSON mixin might look something like this::