diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-06 21:40:05 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-06 21:40:05 +0800 |
commit | 961eb53f41a559b560d53378f7ca0f0abf409e5a (patch) | |
tree | 2da650daa229e57b55fe8de592942f6ee632e48b /docs/solidity-by-example.rst | |
parent | ffade949defb36730a3ea6019a2a3524db446a2e (diff) | |
download | dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.gz dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.tar.zst dexon-solidity-961eb53f41a559b560d53378f7ca0f0abf409e5a.zip |
Moved the location of the "||"
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r-- | docs/solidity-by-example.rst | 6 |
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; } |