summaryrefslogtreecommitdiffstats
path: root/src/cli_ui.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli_ui.rs')
-rw-r--r--src/cli_ui.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cli_ui.rs b/src/cli_ui.rs
index 7b3c29b..d105041 100644
--- a/src/cli_ui.rs
+++ b/src/cli_ui.rs
@@ -401,19 +401,19 @@ pub fn build_ui<'a>() -> App<'a, 'a> {
.multiple(false)
.help("Name of the profile to post to")
)
- .arg(Arg::with_name("parent")
+ .arg(Arg::with_name("text")
.index(2)
.required(true)
.takes_value(true)
.multiple(false)
- .help("Parent block")
+ .help("Text to post")
)
- .arg(Arg::with_name("text")
+ .arg(Arg::with_name("parents")
.index(3)
.required(true)
.takes_value(true)
- .multiple(false)
- .help("Text to post")
+ .multiple(true)
+ .help("Parent block(s)")
)
)