From 561bd1f9dcba1b3c2903af3a705e83f41d13cc41 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Sun, 31 Dec 2023 18:08:46 +0100 Subject: [PATCH] Update src/commands/self_update.rs --- src/commands/self_update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/self_update.rs b/src/commands/self_update.rs index a92ed7e02..eb71ed29d 100644 --- a/src/commands/self_update.rs +++ b/src/commands/self_update.rs @@ -66,7 +66,7 @@ impl SelfUpdateCmd { #[cfg(not(feature = "self-update"))] fn inner_run(&self) -> Result<()> { anyhow::bail!( - "This rustic was built without the \"self-updade\" feature. You should probably use your system package manager to update it." + "This version of rustic was built without the \"self-update\" feature. Please use your system package manager to update it." ); } }