Skip to content

Commit 37194cf

Browse files
Merge pull request #286 from SciML/ChrisRackauckas-patch-1
Fix typo
2 parents 7ba3864 + f77ef3e commit 37194cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/matrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ A = MatrixOperator(rand(4, 4))
491491
B = MatrixOperator(rand(4, 4))
492492
493493
vec_update_func = (b, u, p, t) -> p .* u * t
494-
L = AffineOperator(A, B, zero(4); update_func = vec_update_func)
494+
L = AffineOperator(A, B, zeros(4); update_func = vec_update_func)
495495
L = cache_operator(M, v)
496496
497497
# update L and evaluate

0 commit comments

Comments
 (0)