renamed nu_grid to grid

This commit is contained in:
Darren Schroeder 2021-10-05 10:22:57 -05:00
parent e402adbba0
commit 3c843f7f61

View file

@ -13,7 +13,7 @@
//! needed. For example:
//!
//! ```rust
//! use nu_grid::{Grid, GridOptions, Direction, Filling, Cell};
//! use grid::{Grid, GridOptions, Direction, Filling, Cell};
//!
//! let mut grid = Grid::new(GridOptions {
//! filling: Filling::Spaces(1),
@ -226,7 +226,7 @@ impl Dimensions {
/// Everything needed to format the cells with the grid options.
///
/// For more information, see the [`nu_grid` crate documentation](index.html).
/// For more information, see the [`grid` crate documentation](index.html).
#[derive(PartialEq, Debug)]
pub struct Grid {
options: GridOptions,