Skip to content

Commit f77ef3e

Browse files
Fix typo
Fixes #285
1 parent 7ba3864 commit f77ef3e

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)