From e28230fb202b68c06a575c6173a1215a0e94e058 Mon Sep 17 00:00:00 2001 From: Harrison McCullough Date: Mon, 20 May 2024 21:02:26 -0700 Subject: [PATCH] Minor grammatical fix --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e5a472f..b5f69b8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,7 +40,7 @@ //! //! [`Array2D`] also supports several forms of iteration. You can iterate //! through: -//! - All of the elements, in either [row major or column major order] (see +//! - All the elements, in either [row major or column major order] (see //! [`elements_row_major_iter`] and [`elements_column_major_iter`]). //! - Individual rows or columns (see [`row_iter`] and [`column_iter`]). //! - All rows or all columns (see [`rows_iter`] and [`columns_iter`]).