diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-12 10:50:46 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-12 10:50:46 -0800 |
commit | ee1d96c077b0124cdbd6aada1da2bdc4b21ae594 (patch) | |
tree | 9fe0fd177c71865442c009fd66323551144574b8 | |
parent | cc927a248eb7dca939bfb460a835705d70850378 (diff) | |
download | cryptography-ee1d96c077b0124cdbd6aada1da2bdc4b21ae594.tar.gz cryptography-ee1d96c077b0124cdbd6aada1da2bdc4b21ae594.tar.bz2 cryptography-ee1d96c077b0124cdbd6aada1da2bdc4b21ae594.zip |
Fixes #1518 -- document the captilazation of lcass names
-rw-r--r-- | docs/development/submitting-patches.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/development/submitting-patches.rst b/docs/development/submitting-patches.rst index ff650c4f..810b8748 100644 --- a/docs/development/submitting-patches.rst +++ b/docs/development/submitting-patches.rst @@ -25,6 +25,9 @@ configuration. You can also run the ``tox`` job with ``tox -e pep8``. `Write comments as complete sentences.`_ +Class names which contains acronyms or initialisms should always be +capitalized. A class should be named ``HTTPClient``, not ``HttpClient``. + Every code file must start with the boilerplate licensing notice: .. code-block:: python |