Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Apr 8, 2024
1 parent 40bd46a commit d8ef9ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Utilities/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2511,13 +2511,13 @@ complex-valued).
```jldoctest
julia> import MathOptInterface as MOI
julia> MOI.Utilities._is_maybe_real(MOI.VariableIndex)
julia> MOI.Utilities.is_maybe_real(MOI.VariableIndex)
true
julia> MOI.Utilities._is_maybe_real(MOI.ScalarAffineFunction{Complex{Int}})
julia> MOI.Utilities.is_maybe_real(MOI.ScalarAffineFunction{Complex{Int}})
false
julia> MOI.Utilities._is_maybe_real(MOI.ScalarNonlinearFunction)
julia> MOI.Utilities.is_maybe_real(MOI.ScalarNonlinearFunction)
true
```
"""
Expand Down

0 comments on commit d8ef9ed

Please sign in to comment.