aboutsummaryrefslogtreecommitdiffstats
path: root/docs/style-guide.rst
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-05-06 21:42:05 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-05-06 21:42:05 +0800
commit7bc9777b70ff92bac078a38906a5d105e660fbea (patch)
treeb1757ae087437eeb3fa58fb7530af0394dffd365 /docs/style-guide.rst
parent961eb53f41a559b560d53378f7ca0f0abf409e5a (diff)
downloaddexon-solidity-7bc9777b70ff92bac078a38906a5d105e660fbea.tar.gz
dexon-solidity-7bc9777b70ff92bac078a38906a5d105e660fbea.tar.zst
dexon-solidity-7bc9777b70ff92bac078a38906a5d105e660fbea.zip
Removed bulleted list
Diffstat (limited to 'docs/style-guide.rst')
-rw-r--r--docs/style-guide.rst6
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::