Skip to content

Commit 7d8d4d2

Browse files
committed
Fix typo
1 parent 77714b1 commit 7d8d4d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/nls/meta.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ struct NLSMeta{T, S}
5353
nnzj = nequ * nvar,
5454
nnzh = div(nvar * (nvar + 1), 2),
5555
lin = Int[],
56-
jacobian_residual_available::Bool = true
57-
hessian_residual_available::Bool = true
58-
Jv_residual_available::Bool = true
59-
Jtv_residual_available::Bool = true
60-
Hv_residual_available::Bool = true
56+
jacobian_residual_available::Bool = true,
57+
hessian_residual_available::Bool = true,
58+
Jv_residual_available::Bool = true,
59+
Jtv_residual_available::Bool = true,
60+
Hv_residual_available::Bool = true,
6161
) where {T, S}
6262
nnzj = max(0, nnzj)
6363
nnzh = max(0, nnzh)

0 commit comments

Comments
 (0)