Skip to content

Commit

Permalink
Fix typo in help message #72
Browse files Browse the repository at this point in the history
  • Loading branch information
humblepenguinn committed Oct 16, 2024
1 parent 1641d18 commit 5bf06ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/envio/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ impl Command {
.with_validator(min_length!(8))
.with_formatter(&|_| String::from("Input received"))
.with_help_message(
"Remeber this key, you will need it to decrypt your profile later",
"Remember this key, you will need it to decrypt your profile later",
)
.with_custom_confirmation_error_message("The keys don't match.")
.with_custom_confirmation_error_message("The keys don7't match.")
.prompt();

let user_key = if let Err(e) = prompt {
Expand Down

0 comments on commit 5bf06ba

Please sign in to comment.