diff --git a/crates/turborepo-dirs/src/lib.rs b/crates/turborepo-dirs/src/lib.rs index c8c46f048dc45..f9d439446be76 100644 --- a/crates/turborepo-dirs/src/lib.rs +++ b/crates/turborepo-dirs/src/lib.rs @@ -20,7 +20,7 @@ pub fn config_dir() -> Result, PathError> { /// Returns the path to the user's configuration directory. /// /// This is a wrapper around `dirs_next::config_dir` that also checks the -/// VERCEL_CONFIG_DIR_PATH` environment variable. If the environment variable +/// `VERCEL_CONFIG_DIR_PATH` environment variable. If the environment variable /// is set, it will return that path instead of `dirs_next::config_dir`. pub fn vercel_config_dir() -> Result, PathError> { if let Ok(dir) = std::env::var("VERCEL_CONFIG_DIR_PATH") {