summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views
diff options
context:
space:
mode:
authorpp <pp@users.noreply.github.com>2016-01-10 17:48:16 +0100
committerTim Graham <timograham@gmail.com>2016-01-11 18:05:56 -0500
commit1cbc556bcee57c1d2cbbbe3e6ce3b8d9949f186f (patch)
treeb494f9bc739fef040e013e1cde9bc9e48b1c880d /docs/topics/class-based-views
parent27ef6403c8b9f332feb1f9fe52053ded0b91da85 (diff)
[1.9.x] Added missing period to "etc.".
Backport of b34ff66e5bae3760273255fa5b2525eb21a5eb63 from master
Diffstat (limited to 'docs/topics/class-based-views')
-rw-r--r--docs/topics/class-based-views/intro.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/class-based-views/intro.txt b/docs/topics/class-based-views/intro.txt
index 5e3351e90c..2fbbb4b63b 100644
--- a/docs/topics/class-based-views/intro.txt
+++ b/docs/topics/class-based-views/intro.txt
@@ -7,7 +7,7 @@ objects instead of functions. They do not replace function-based views, but
have certain differences and advantages when compared to function-based views:
* Organization of code related to specific HTTP methods (``GET``, ``POST``,
- etc) can be addressed by separate methods instead of conditional branching.
+ etc.) can be addressed by separate methods instead of conditional branching.
* Object oriented techniques such as mixins (multiple inheritance) can be
used to factor code into reusable components.