From 34b3a49cae0260fed31734fd221430a2a7d6eb31 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sat, 27 May 2023 03:18:39 -0500 Subject: [PATCH] [nu-explore] fix Cargo description (#9297) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Description The old description ("Nushell table printing") is identical to that of `nu-table`. Per `explore --help` it is probably more accurate to say "Nushell table pager". # User-Facing Changes N/A # Tests + Formatting ``` ❯ cargo metadata --no-deps | from json | get packages | get 14 | get description warning: please specify `--format-version` flag explicitly to avoid compatibility problems Nushell table pager ``` # After Submitting N/A - change will go out when `0.82.0` is released Signed-off-by: Michel Alexandre Salim --- crates/nu-explore/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-explore/Cargo.toml b/crates/nu-explore/Cargo.toml index 9ab41ca457..cff5c9120d 100644 --- a/crates/nu-explore/Cargo.toml +++ b/crates/nu-explore/Cargo.toml @@ -1,6 +1,6 @@ [package] authors = ["The Nushell Project Developers"] -description = "Nushell table printing" +description = "Nushell table pager" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-explore" edition = "2021" license = "MIT"