From cc5a3860fbd799d53141c85a7544b8a40b366624 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sat, 14 Mar 2015 08:58:46 +0100 Subject: [PATCH] Update readme.md --- cclauss/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cclauss/readme.md b/cclauss/readme.md index 6c36d2f..e863815 100644 --- a/cclauss/readme.md +++ b/cclauss/readme.md @@ -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