Skip to content

Commit a908ba4

Browse files
committed
Update
1 parent 6645cc3 commit a908ba4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sets.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2796,7 +2796,7 @@ struct VectorNonlinearOracle{T} <: AbstractVectorSet
27962796
eval_hessian_lagrangian::Union{Nothing,Function} = nothing,
27972797
) where {T}
27982798
if length(l) != length(u)
2799-
throw(DimenionMismatch())
2799+
throw(DimensionMismatch())
28002800
end
28012801
return new{T}(
28022802
dimension,

test/General/sets.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ end
421421

422422
function test_VectorNonlinearOracle()
423423
@test_throws(
424-
DimenionMismatch,
424+
DimensionMismatch,
425425
MOI.VectorNonlinearOracle(;
426426
dimension = 3,
427427
l = [0.0, 0.0, 1.0],

0 commit comments

Comments
 (0)