diff options
author | chriseth <chris@ethereum.org> | 2018-04-25 00:58:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-25 00:58:04 +0800 |
commit | 3d89d8b126b7a3c9147dc026d877e9fcc23c633f (patch) | |
tree | ad2ba40bba0ca3ab76ead0d47e417154ed76d9ad | |
parent | d1e1293fbd852149edfd03fd6b2e54c8c4c6e5f9 (diff) | |
parent | aff19a100924e98a46a0f916f7e03acbbcc5404e (diff) | |
download | dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.tar dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.tar.gz dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.tar.bz2 dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.tar.lz dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.tar.xz dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.tar.zst dexon-solidity-3d89d8b126b7a3c9147dc026d877e9fcc23c633f.zip |
Merge pull request #3989 from elopio/patch-1
docs: clarify the maximum line length style
-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. |