From fd6573873893b448045c37e7bc6c9e44cc20c38f Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Tue, 19 Mar 2019 22:56:32 +0100 Subject: [PATCH] Fix icamax_full doc-test. --- src/base/blas.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/base/blas.rs b/src/base/blas.rs index 5eddf2b5..af20abae 100644 --- a/src/base/blas.rs +++ b/src/base/blas.rs @@ -197,9 +197,10 @@ impl> Matrix { /// # Examples: /// /// ``` + /// # use num_complex::Complex; /// # use nalgebra::Matrix2x3; /// let mat = Matrix2x3::new(Complex::new(11.0, 1.0), Complex::new(-12.0, 2.0), Complex::new(13.0, 3.0), - /// Complex::new(21.0, 43.0), Complex::new(22.0, 5.0), Complex::new(-23.0, 0.0); + /// Complex::new(21.0, 43.0), Complex::new(22.0, 5.0), Complex::new(-23.0, 0.0)); /// assert_eq!(mat.iamax_full(), (1, 0)); /// ``` #[inline]