diff --git a/src/lib.rs b/src/lib.rs index 57ce999..7e37abd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -116,6 +116,8 @@ macro_rules! grid { /// /// Uses a rust `Vec` type to reference the grid data on the heap. /// Also the number of rows and columns are stored in the grid data structure. +/// +/// The size limit of a grid is `rows * cols < usize`. /// /// The grid data is stored in a row-major memory layout. pub struct Grid {