diff options
author | ethers <ethereum@outlook.com> | 2016-11-18 10:09:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-18 10:09:22 +0800 |
commit | 549bca149408262341375f39a75e878e68d2df6b (patch) | |
tree | 601fd5571c676223434c1d296b4f1ddac1477930 /docs/style-guide.rst | |
parent | 39559c1bb6ffc42f8573cada15afd2398e3d99e9 (diff) | |
download | dexon-solidity-549bca149408262341375f39a75e878e68d2df6b.tar.gz 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.rst | 4 |
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 { ... } |