From 3c843f7f615bc82402c54e29c57bd502f3264402 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Tue, 5 Oct 2021 10:22:57 -0500 Subject: [PATCH] renamed nu_grid to grid --- crates/nu-command/src/viewers/grid.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/viewers/grid.rs b/crates/nu-command/src/viewers/grid.rs index dacb476403..36889e1d9f 100644 --- a/crates/nu-command/src/viewers/grid.rs +++ b/crates/nu-command/src/viewers/grid.rs @@ -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,