Improve CLI command descriptions
This commit is contained in:
parent
ad4393f6ed
commit
f535501ec2
1 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@ pub fn init() {
|
||||||
let setup = setup.subcommand(
|
let setup = setup.subcommand(
|
||||||
Command::new("import")
|
Command::new("import")
|
||||||
.display_order(3)
|
.display_order(3)
|
||||||
.about("Import a SQL script into an existing database")
|
.about("Import a SurrealQL script into an existing database")
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("file")
|
Arg::new("file")
|
||||||
.index(1)
|
.index(1)
|
||||||
|
@ -332,7 +332,7 @@ pub fn init() {
|
||||||
let setup = setup.subcommand(
|
let setup = setup.subcommand(
|
||||||
Command::new("export")
|
Command::new("export")
|
||||||
.display_order(4)
|
.display_order(4)
|
||||||
.about("Export an existing database into a SQL script")
|
.about("Export an existing database as a SurrealQL script")
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("file")
|
Arg::new("file")
|
||||||
.index(1)
|
.index(1)
|
||||||
|
|
Loading…
Reference in a new issue