summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEthan Soucy <ethan.soucy@gmail.com>2019-09-28 13:40:36 -0400
committerGitHub <noreply@github.com>2019-09-28 13:40:36 -0400
commit33d3653c883d96cd983bd57d821d14b62fc9c7f5 (patch)
treed24dc8fc31d070cb9daa51a1032127f76360b65e
parentc35d1308dfbaed42731ea4dfe584025d60ebd8f2 (diff)
downloadmullvadvpn-33d3653c883d96cd983bd57d821d14b62fc9c7f5.tar.xz
mullvadvpn-33d3653c883d96cd983bd57d821d14b62fc9c7f5.zip
Fixed a typo in relay get command response
-rw-r--r--mullvad-types/src/relay_constraints.rs2
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) => {