Update readme.md

This commit is contained in:
cclauss
2015-03-14 08:58:46 +01:00
parent 72dfc11ea4
commit cc5a3860fb
+1 -1
View File
@@ -25,7 +25,7 @@ On bounding a variable between a min and a max
```
x = -3 |> x <| 5
# would be equal to:
x = max(min(x, 5), -3)
x = min(max(x, -3), 5)
# other approaches
x = -3 | x | 5