diff options
| author | Ethan Soucy <ethan.soucy@gmail.com> | 2019-09-28 13:40:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-28 13:40:36 -0400 |
| commit | 33d3653c883d96cd983bd57d821d14b62fc9c7f5 (patch) | |
| tree | d24dc8fc31d070cb9daa51a1032127f76360b65e | |
| parent | c35d1308dfbaed42731ea4dfe584025d60ebd8f2 (diff) | |
| download | mullvadvpn-33d3653c883d96cd983bd57d821d14b62fc9c7f5.tar.xz mullvadvpn-33d3653c883d96cd983bd57d821d14b62fc9c7f5.zip | |
Fixed a typo in relay get command response
| -rw-r--r-- | mullvad-types/src/relay_constraints.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-types/src/relay_constraints.rs b/mullvad-types/src/relay_constraints.rs index 156cbf05b1..9306b6670b 100644 --- a/mullvad-types/src/relay_constraints.rs +++ b/mullvad-types/src/relay_constraints.rs @@ -161,7 +161,7 @@ impl fmt::Display for RelayConstraints { match self.tunnel_protocol { Constraint::Any => write!( f, - "Any tunnel protcol with OpenVPN through {} and WireGuard through {}", + "Any tunnel protocol with OpenVPN through {} and WireGuard through {}", &self.openvpn_constraints, &self.wireguard_constraints, )?, Constraint::Only(ref tunnel_protocol) => { |
