diff --git a/src/helpers.rs b/src/helpers.rs index 0ca8a2b..f985a9b 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -100,7 +100,7 @@ pub fn git_dir() -> Result> { /// Returns a `PathBuf` to the cache root for this project /// /// This will be either the appropriate cache dir according to XDG or as a fallback `/tmp`. -pub fn chache_root() -> PathBuf { +pub fn cache_root() -> PathBuf { match ProjectDirs::from("org", "webschneider", env!("CARGO_PKG_NAME")) { Some(dirs) => PathBuf::from(dirs.cache_dir()), None => "/tmp".into(), @@ -109,7 +109,7 @@ pub fn chache_root() -> PathBuf { /// Returns a default file cache pub fn default_cache() -> Result { - let cache_root = crate::helpers::chache_root(); + let cache_root = crate::helpers::cache_root(); FileCache::new(&cache_root, std::time::Duration::from_secs(60 * 24 * 2)) }