From 44fdb61d4dbdc2a91c1869355c0b2c132fbe81a9 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 31 Oct 2024 11:05:31 +1300 Subject: [PATCH] Update src/Utilities/model.jl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: BenoƮt Legat --- src/Utilities/model.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utilities/model.jl b/src/Utilities/model.jl index 5a75a40a99..43d58efce4 100644 --- a/src/Utilities/model.jl +++ b/src/Utilities/model.jl @@ -340,7 +340,7 @@ function MOI.add_constraint( ) where {S<:MOI.AbstractScalarSet} # We check supports_constraint here because it is a common practice for # AbstractModels to declare that they do not support particular constraints, - # evenn though the underlying `.constraints` object does. See, for example, + # even though the underlying `.constraints` object does. See, for example, # the various models in MOI.FileFormats. if !MOI.supports_constraint(model, MOI.VariableIndex, S) throw(MOI.UnsupportedConstraint{MOI.VariableIndex,S}())