Fixed typo in docs/internals/contributing/writing-code/coding-style.txt

This commit is contained in:
Jiang Haiyun 2016-07-13 22:15:39 +08:00 committed by Tim Graham
parent 841cb45847
commit 10883b63b7
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ Python style
* Use four spaces for indentation. * Use four spaces for indentation.
* Use underscores, not camelCase, for variable, function and method names * Use underscores, not camelCase, for variable, function and method names
(i.e. ``poll.get_unique_voters()``, not ``poll.getUniqueVoters``). (i.e. ``poll.get_unique_voters()``, not ``poll.getUniqueVoters()``).
* Use ``InitialCaps`` for class names (or for factory functions that * Use ``InitialCaps`` for class names (or for factory functions that
return classes). return classes).