aboutsummaryrefslogtreecommitdiffstats
path: root/docs/style-guide.rst
diff options
context:
space:
mode:
authorethers <ethereum@outlook.com>2016-11-18 10:09:22 +0800
committerGitHub <noreply@github.com>2016-11-18 10:09:22 +0800
commit549bca149408262341375f39a75e878e68d2df6b (patch)
tree601fd5571c676223434c1d296b4f1ddac1477930 /docs/style-guide.rst
parent39559c1bb6ffc42f8573cada15afd2398e3d99e9 (diff)
downloaddexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar
dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar.gz
dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar.bz2
dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar.lz
dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar.xz
dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar.zst
dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.zip
Don't include a whitespace in fallback function
Diffstat (limited to 'docs/style-guide.rst')
-rw-r--r--docs/style-guide.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst
index 80ffd493..b0560917 100644
--- a/docs/style-guide.rst
+++ b/docs/style-guide.rst
@@ -173,7 +173,7 @@ Yes::
...
}
- function () payable {
+ function() payable {
...
}
@@ -210,7 +210,7 @@ No::
...
}
- function () payable {
+ function() payable {
...
}