From f173f599328cf0ba0c00579f053256d18d66cbea Mon Sep 17 00:00:00 2001 From: Kyle Lippincott Date: Mon, 12 Sep 2022 12:21:25 -0700 Subject: [PATCH] Fix typo in error message --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 2ce5d0087..ae1f7d35d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -22,7 +22,7 @@ use thiserror::Error; pub enum ConfigError { #[error(transparent)] ConfigReadError(#[from] config::ConfigError), - #[error("Both {0} and {1} exist. Please consolidate you configs in one of them.")] + #[error("Both {0} and {1} exist. Please consolidate your configs in one of them.")] AmbiguousSource(PathBuf, PathBuf), }