Skip to content

Commit b8d0b8d

Browse files
committed
Fix test case
1 parent 755f654 commit b8d0b8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arnoldi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl<A: Scalar> MGS<A> {
8383
/// let coef = mgs.append(array![1.0, 1.0, 0.0], 1e-9).unwrap();
8484
/// close_l2(&coef, &array![1.0, 1.0], 1e-9).unwrap();
8585
///
86-
/// assert!(mgs.append(array![1.0, 1.0, 0.0], 1e-9).is_none()); // Cannot append dependent vector
86+
/// assert!(mgs.append(array![1.0, 2.0, 0.0], 1e-9).is_none()); // Cannot append dependent vector
8787
/// ```
8888
pub fn append<S>(&mut self, a: ArrayBase<S, Ix1>, rtol: A::Real) -> Option<Coefficient<A>>
8989
where

0 commit comments

Comments
 (0)