From 96b65c430feec0ffe0e64dcfdfe5bf6e3d0710a5 Mon Sep 17 00:00:00 2001 From: Hantao Hui Date: Fri, 17 Dec 2021 14:48:14 +0100 Subject: [PATCH] using no_run in doc code example --- nalgebra-sparse/src/io/matrix_market.rs | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/nalgebra-sparse/src/io/matrix_market.rs b/nalgebra-sparse/src/io/matrix_market.rs index 446f045d..dea284ee 100644 --- a/nalgebra-sparse/src/io/matrix_market.rs +++ b/nalgebra-sparse/src/io/matrix_market.rs @@ -226,7 +226,7 @@ pub enum MatrixMarketErrorKind { /// %%matrixmarket matrix coordinate integer symmetric /// 5 4 2 /// 1 1 10 - /// 2 3 5 + /// 3 2 5 /// "#; /// let matrix_result = load_coo_from_matrix_market_str::(str); /// assert_eq!(matrix_result.is_err(), true); @@ -737,12 +737,10 @@ struct MatrixMarketParser; /// /// Examples /// -------- -/// ``` +/// ```no_run /// use nalgebra_sparse::io::load_coo_from_matrix_market_file; /// // Use e.g. `i32` for integer matrices -/// let matrix = load_coo_from_matrix_market_file::("path/to/matrix.mtx"); -/// // extract the real matrix here by -/// // let matrix = matrix.unwrap(); +/// let matrix = load_coo_from_matrix_market_file::("path/to/matrix.mtx").unwrap(); /// ``` pub fn load_coo_from_matrix_market_file>( path: P, @@ -766,8 +764,7 @@ where /// Examples /// -------- /// ``` -/// # use nalgebra_sparse::io::load_coo_from_matrix_market_str; -/// # use nalgebra_sparse::io::MatrixMarketErrorKind; +/// use nalgebra_sparse::io::load_coo_from_matrix_market_str; /// let str = r#" /// %%matrixmarket matrix coordinate integer general /// 5 4 2 @@ -775,9 +772,7 @@ where /// 2 3 5 /// "#; /// // Use e.g. `i32` for integer matrices -/// let matrix = load_coo_from_matrix_market_str::(str); -/// // extract the real matrix here by -/// // let matrix = matrix.unwrap(); +/// let matrix = load_coo_from_matrix_market_str::(str).unwrap(); /// ``` pub fn load_coo_from_matrix_market_str(data: &str) -> Result, MatrixMarketError> where