Skip to content

Commit e57f651

Browse files
committed
Fix a typo
1 parent 591304b commit e57f651

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qpmodel.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ With the first constructor, if `sortcols = true`, then `Hcols` and `Acols` are s
5151
lp = QuadraticModel(c, A; lcon = lcon, ucon = ucon, lvar = lvar, uvar = uvar, c0 = c0)
5252
5353
Create a Linear model ``c^T x + c_0`` with linear constraints `lcon ≦ Ax ≦ ucon` and
54-
optional bounds `lvar ≦ x ≦ uvar` and .
54+
optional bounds `lvar ≦ x ≦ uvar`.
5555
5656
You can also use [`QPSReader.jl`](https://github.com/JuliaSmoothOptimizers/QPSReader.jl) to
5757
create a Quadratic model from a QPS file:
@@ -511,7 +511,7 @@ NLPModels.hess_coord!(
511511
) = hess_coord!(qp, x, vals, obj_weight = obj_weight)
512512

513513
function NLPModels.jac_lin_structure!(
514-
qp::AbstractQuadraticModell{T, S, M1, M2},
514+
qp::AbstractQuadraticModel{T, S, M1, M2},
515515
rows::AbstractVector{<:Integer},
516516
cols::AbstractVector{<:Integer},
517517
) where {T, S, M1, M2 <: SparseMatrixCOO}

0 commit comments

Comments
 (0)