From 71176c08020d4497816b3afe756914391649a316 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 8 Oct 2024 14:25:12 +1300 Subject: [PATCH] Update optimizer_interface.jl --- src/optimizer_interface.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/optimizer_interface.jl b/src/optimizer_interface.jl index 3d67011c9c0..93717e65d4c 100644 --- a/src/optimizer_interface.jl +++ b/src/optimizer_interface.jl @@ -1254,8 +1254,8 @@ end # Some MOI attributes have a strict value type, like ::String or ::Float64, but # users may pass other generic subtypes, like SubString instead of String. # Rather than throw obtuse errors, we can catch and fix some common cases. We -# shouldn't fix every case (e.g., AbstractString -> String) because users might -# intentionally want the other subtype. +# shouldn't fix every case (for example, AbstractString -> String) because +# users might intentionally want the other subtype. # # The default case is to do nothing: _to_concrete_value_type_if_needed(::MOI.AnyAttribute, value) = value