diff options
author | Leo Arias <leo@zeppelin.solutions> | 2018-04-25 00:27:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-25 00:27:35 +0800 |
commit | aff19a100924e98a46a0f916f7e03acbbcc5404e (patch) | |
tree | ad2ba40bba0ca3ab76ead0d47e417154ed76d9ad /docs/style-guide.rst | |
parent | d1e1293fbd852149edfd03fd6b2e54c8c4c6e5f9 (diff) | |
download | dexon-solidity-aff19a100924e98a46a0f916f7e03acbbcc5404e.tar.gz dexon-solidity-aff19a100924e98a46a0f916f7e03acbbcc5404e.tar.zst dexon-solidity-aff19a100924e98a46a0f916f7e03acbbcc5404e.zip |
docs: clarify the maximum line length style
Diffstat (limited to 'docs/style-guide.rst')
-rw-r--r-- | docs/style-guide.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst index ee1ea4bd..0c58f3eb 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -117,7 +117,7 @@ No:: Maximum Line Length =================== -Keeping lines under the `PEP 8 recommendation <https://www.python.org/dev/peps/pep-0008/#maximum-line-length>`_ of 79 (or 99) +Keeping lines under the `PEP 8 recommendation <https://www.python.org/dev/peps/pep-0008/#maximum-line-length>`_ to a maximum of 79 (or 99) characters helps readers easily parse the code. Wrapped lines should conform to the following guidelines. |