Fix typo in error message

This commit is contained in:
Kyle Lippincott 2022-09-12 12:21:25 -07:00 committed by spectral
parent 6f59a12f60
commit f173f59932

View file

@ -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),
}