summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mullvad-update/src/format/key.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-update/src/format/key.rs b/mullvad-update/src/format/key.rs
index 01cd51a6ea..4add53fab4 100644
--- a/mullvad-update/src/format/key.rs
+++ b/mullvad-update/src/format/key.rs
@@ -147,7 +147,7 @@ fn bytes_from_hex<const SIZE: usize>(key: &str) -> anyhow::Result<[u8; SIZE]> {
let bytes = hex::decode(key).context("invalid hex")?;
if bytes.len() != SIZE {
bail!(
- "hex-encoded string of {SIZE} bytes, found {} bytes",
+ "expected hex-encoded string of {SIZE} bytes, found {} bytes",
bytes.len()
);
}