diff --git a/ssh-cli/src/main.rs b/ssh-cli/src/main.rs index b76b2a0..2c044ef 100644 --- a/ssh-cli/src/main.rs +++ b/ssh-cli/src/main.rs @@ -43,7 +43,11 @@ async fn main() -> eyre::Result<()> { println!(); println!(" help -> The help command prints this message. Hello 👋"); println!(""); - println!(" lock [wait|nowait] -> Locks the door identified with ."); + println!( + " show-locks -> Display a list of currently connected locks along with their status." + ); + println!(""); + println!(" lock [wait|nowait] -> Locks the door identified with ."); println!( " Also takes an additional parameter of \"wait\" or \"nowait\"which dictates" ); @@ -51,7 +55,7 @@ async fn main() -> eyre::Result<()> { println!(" it waits until the lock status changes to open."); println!(" Defaults to \"wait\" if not specified."); println!(); - println!(" unlock [wait|nowait] -> Unlocks the door identified with ."); + println!(" unlock [wait|nowait] -> Unlocks the lock identified with ."); println!( " Also takes an additional parameter of \"wait\" or \"nowait\"which dictates" );