From 961eb53f41a559b560d53378f7ca0f0abf409e5a Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Fri, 6 May 2016 09:40:05 -0400 Subject: Moved the location of the "||" --- docs/solidity-by-example.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') 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; } -- cgit v1.2.3