diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-06 21:42:05 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-06 21:42:05 +0800 |
commit | 7bc9777b70ff92bac078a38906a5d105e660fbea (patch) | |
tree | b1757ae087437eeb3fa58fb7530af0394dffd365 | |
parent | 961eb53f41a559b560d53378f7ca0f0abf409e5a (diff) | |
download | dexon-solidity-7bc9777b70ff92bac078a38906a5d105e660fbea.tar.gz dexon-solidity-7bc9777b70ff92bac078a38906a5d105e660fbea.tar.zst dexon-solidity-7bc9777b70ff92bac078a38906a5d105e660fbea.zip |
Removed bulleted list
-rw-r--r-- | docs/style-guide.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst index 0ee2dddc..f856e05a 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -155,7 +155,7 @@ Whitespace in Expressions Avoid extraneous whitespace in the following situations: -* Immediately inside parenthesis, brackets or braces. +Immediately inside parenthesis, brackets or braces. Yes:: @@ -165,7 +165,7 @@ No:: spam( ham[ 1 ], Coin( { name: "ham" } ) );` -* Immediately before a comma, semicolon: +Immediately before a comma, semicolon: Yes:: @@ -175,7 +175,7 @@ No:: function spam(uint i , Coin coin) ; -* More than one space around an assignment or other operator to align with +More than one space around an assignment or other operator to align with another: Yes:: |