Commit 46589d0c authored by Tim Graham's avatar Tim Graham
Browse files

Merge pull request #244 from mbrochh/master

Fixed small typo in class based view docs.
parents 865ff32b 6f229d2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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::