aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2025-03-18 10:32:09 +0100
committerHimbeer <himbeer@disroot.org>2025-03-18 10:32:09 +0100
commit894db52dac61d1b7ab79ce52d0725108aa34ef0d (patch)
tree53f06b5478beed92b6fe41f5b517909e6074905b
parent90f5b6d2750da937885255ff3dc4ac4e6372c70b (diff)
Fix missing space at the end of the "set up link: " error prefix
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e099cbc..b874dc4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -95,7 +95,7 @@ enum SetupError {
impl fmt::Display for SetupError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
- write!(f, "set up link:")?;
+ write!(f, "set up link: ")?;
match self {
Self::InvalidInterfaceName(name, e) => {