From a82fc6687ee7711cf883221b7e5e80073f0d9de0 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 7 Nov 2023 11:10:31 +1300 Subject: [PATCH] Apply suggestions from code review --- docs/src/tutorials/linear/tips_and_tricks.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorials/linear/tips_and_tricks.jl b/docs/src/tutorials/linear/tips_and_tricks.jl index b339521c36e..279f15e1a3e 100644 --- a/docs/src/tutorials/linear/tips_and_tricks.jl +++ b/docs/src/tutorials/linear/tips_and_tricks.jl @@ -255,7 +255,7 @@ model = Model(); @constraint(model, x >= 1 * z) # When `z = 0` the two constraints are equivalent to `0 <= x <= 0`. When `z = 1`, -# the two constraints are equivalennt to `1 <= x <= 2`. +# the two constraints are equivalent to `1 <= x <= 2`. # ## Semi-integer variables @@ -275,7 +275,7 @@ model = Model(); @constraint(model, x >= 5 * z) # When `z = 0` the two constraints are equivalent to `0 <= x <= 0`. When `z = 1`, -# the two constraints are equivalennt to `5 <= x <= 10`. +# the two constraints are equivalent to `5 <= x <= 10`. # ## Special Ordered Sets of Type 1