From 373b9e2ccfc95d9a3ff1e1cd22971f483bacd37f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 5 Jul 2022 14:18:57 -0400 Subject: [PATCH] GuardMgr: tweak an error message. --- crates/tor-guardmgr/src/err.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tor-guardmgr/src/err.rs b/crates/tor-guardmgr/src/err.rs index cb9990ab5..1e6cc1be4 100644 --- a/crates/tor-guardmgr/src/err.rs +++ b/crates/tor-guardmgr/src/err.rs @@ -82,7 +82,7 @@ impl tor_error::HasRetryTime for PickGuardError { #[non_exhaustive] pub enum GuardMgrError { /// An error manipulating persistent state - #[error("Problem accessing persistent state")] + #[error("Problem accessing persistent guard state")] State(#[from] tor_persist::Error), /// An error that occurred while trying to spawn a daemon task.