aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-05-06 21:40:05 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-05-06 21:40:05 +0800
commit961eb53f41a559b560d53378f7ca0f0abf409e5a (patch)
tree2da650daa229e57b55fe8de592942f6ee632e48b /docs
parentffade949defb36730a3ea6019a2a3524db446a2e (diff)
downloaddexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar
dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.gz
dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.bz2
dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.lz
dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.xz
dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.zst
dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.zip
Moved the location of the "||"
Diffstat (limited to 'docs')
-rw-r--r--docs/solidity-by-example.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst
index 6a3de0cd..171e9273 100644
--- a/docs/solidity-by-example.rst
+++ b/docs/solidity-by-example.rst
@@ -400,9 +400,9 @@ high or low invalid bids.
{
uint length = bids[msg.sender].length;
if (
- _values.length != length
- || _fake.length != length
- || _secret.length != length
+ _values.length != length ||
+ _fake.length != length ||
+ _secret.length != length
) {
throw;
}