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