Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a small typo in relay set --help #1711

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Line wrap the file at 100 chars. Th
### Fixed
- Fix bogus or absent update notifications on the desktop app due to incorrect deserialization of a
struct sent from the daemon.
- Fix typo in the help documentation for the `relay set` command.

#### Android
- Fix crash when leaving WireGuard Key screen while key is still verifying.
Expand Down
2 changes: 1 addition & 1 deletion mullvad-cli/src/cmds/relay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl Command for Relay {
)
.subcommand(
clap::SubCommand::with_name("tunnel")
.about("Set inidividual tunnel constraints")
.about("Set individual tunnel constraints")
.arg(
clap::Arg::with_name("vpn protocol")
.required(true)
Expand Down