summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnton <manevant@gmail.com>2015-04-20 20:54:54 +0300
committerTim Graham <timograham@gmail.com>2015-04-20 14:11:51 -0400
commit76f20c5307d50b4909ce7fafa4d6e8ad58e77e38 (patch)
treecb577fea126a685dda03c801b7137bd4b93f143a /docs
parente02616b1b0f89fd84cc0c6118f8c871fde8f3650 (diff)
[1.8.x] Fixed typo in docs/topics/class-based-views/intro.txt
Backport of f5fbddf22f5e9b760e76ef35f104270026c60693 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/class-based-views/intro.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/topics/class-based-views/intro.txt b/docs/topics/class-based-views/intro.txt
index 53f32198c6..6c1ec9233e 100644
--- a/docs/topics/class-based-views/intro.txt
+++ b/docs/topics/class-based-views/intro.txt
@@ -251,10 +251,9 @@ more of the methods (or both!).
Decorating class-based views
============================
-The extension of class-based views isn't limited to using mixins. You
-can use also use decorators. Since class-based views aren't functions,
-decorating them works differently depending on if you're using ``as_view`` or
-creating a subclass.
+The extension of class-based views isn't limited to using mixins. You can also
+use decorators. Since class-based views aren't functions, decorating them works
+differently depending on if you're using ``as_view()`` or creating a subclass.
Decorating in URLconf
---------------------