From 5a9a1eb64544fff238f5436eb55643b6329b93b0 Mon Sep 17 00:00:00 2001 From: Jack Wrenn Date: Sat, 8 Dec 2018 10:24:47 -0500 Subject: [PATCH] typofix: indicies -> indices --- src/base/indexing.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/base/indexing.rs b/src/base/indexing.rs index 397db7c4..304242c4 100644 --- a/src/base/indexing.rs +++ b/src/base/indexing.rs @@ -334,8 +334,8 @@ pub trait MatrixIndexMut<'a, N: Scalar, R: Dim, C: Dim, S: StorageMut>: } /// # Indexing Operations -/// ## Indicies to Individual Elements -/// ### Two-Dimensional Indicies +/// ## Indices to Individual Elements +/// ### Two-Dimensional Indices /// ``` /// # use nalgebra::*; /// let matrix = Matrix2::new(0, 2, @@ -359,7 +359,7 @@ pub trait MatrixIndexMut<'a, N: Scalar, R: Dim, C: Dim, S: StorageMut>: /// assert_eq!(matrix.get(3), Some(&3)); /// ``` /// -/// ## Indicies to Individual Rows and Columns +/// ## Indices to Individual Rows and Columns /// ### Index to a Row /// ``` /// # use nalgebra::*; @@ -381,7 +381,7 @@ pub trait MatrixIndexMut<'a, N: Scalar, R: Dim, C: Dim, S: StorageMut>: /// 1))); /// ``` /// -/// ## Indicies to Parts of Individual Rows and Columns +/// ## Indices to Parts of Individual Rows and Columns /// ### Index to a Partial Row /// ``` /// # use nalgebra::*; @@ -408,7 +408,7 @@ pub trait MatrixIndexMut<'a, N: Scalar, R: Dim, C: Dim, S: StorageMut>: /// .eq(&Matrix2x1::new(1, /// 2))); /// ``` -/// ## Indicies to Ranges of Rows and Columns +/// ## Indices to Ranges of Rows and Columns /// ### Index to a Range of Rows /// ``` /// # use nalgebra::*;