diff options
author | wbt <wbt@users.noreply.github.com> | 2018-03-31 03:28:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-31 03:28:15 +0800 |
commit | 8aadc179ae9f47a7d56c85b2af492318dc571d5e (patch) | |
tree | c940aa08ede7e026e43abbf3ac93c2b229821767 | |
parent | 326d656a552ca247b5c96f1921c9c4c828ce93ad (diff) | |
download | dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.tar dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.tar.gz dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.tar.bz2 dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.tar.lz dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.tar.xz dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.tar.zst dexon-solidity-8aadc179ae9f47a7d56c85b2af492318dc571d5e.zip |
Fix small formatting issue
in which a constant was not treated as code, inconsistent with surrounding examples.
-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 2261746f..ee1ea4bd 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -904,7 +904,7 @@ Constants ========= Constants should be named with all capital letters with underscores separating -words. Examples: ``MAX_BLOCKS``, `TOKEN_NAME`, ``TOKEN_TICKER``, ``CONTRACT_VERSION``. +words. Examples: ``MAX_BLOCKS``, ``TOKEN_NAME``, ``TOKEN_TICKER``, ``CONTRACT_VERSION``. Modifier Names |