aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}