Added missing period to "etc.".

This commit is contained in:
pp 2016-01-10 17:48:16 +01:00 committed by Tim Graham
parent 99d2469e75
commit b34ff66e5b
16 changed files with 17 additions and 17 deletions

View file

@ -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.