From 9d66d8e8882c64b69dea2b6fb6fcd1131911d81b Mon Sep 17 00:00:00 2001 From: mducharm <9277274+mducharm@users.noreply.github.com> Date: Mon, 13 Dec 2021 11:24:08 -0500 Subject: [PATCH] fixed typo --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 37f1b0e..e1358f4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,10 @@ /*! # Two Dimensional Grid -Continuos growable 2D data structure. +Continuous growable 2D data structure. The purpose of this crate is to provide an universal data structure that is faster, uses less memory, and is easier to use than a naive `Vec>` solution. -Similar to *C-like* arrays `grid` uses a flat 1D `Vec` data structure to have a continuos +Similar to *C-like* arrays `grid` uses a flat 1D `Vec` data structure to have a continuous memory data layout. See also [this](https://stackoverflow.com/questions/17259877/1d-or-2d-array-whats-faster) explanation of why you should probably use a one-dimensional array approach.