From e234f3ea7b08e2078890eda35abcfff8fccc3541 Mon Sep 17 00:00:00 2001 From: Oriol <142458783+oornaque@users.noreply.github.com> Date: Sun, 7 Apr 2024 15:09:24 +0200 Subject: [PATCH] Fix typo in help stor import (#12442) Changed `export` for `import` # Description `help stor import` showed a help string that was probably copy-pasted from `stor export` # User-Facing Changes Now `help stor import` shows a correct description of the operation that it is doing # Tests + Formatting # After Submitting --- crates/nu-command/src/stor/import.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/stor/import.rs b/crates/nu-command/src/stor/import.rs index 41c2a3609f..fa2aace858 100644 --- a/crates/nu-command/src/stor/import.rs +++ b/crates/nu-command/src/stor/import.rs @@ -15,7 +15,7 @@ impl Command for StorImport { .required_named( "file-name", SyntaxShape::String, - "file name to export the sqlite in-memory database to", + "file name to import the sqlite in-memory database from", Some('f'), ) .allow_variants_without_examples(true)