Fix documentation on --cache-dir CLI (#3285)

## Summary

This looks like a copy-paste error.
This commit is contained in:
Charlie Marsh
2024-04-26 22:28:00 -04:00
committed by GitHub
parent 43181f1933
commit da89e53090
+1 -2
View File
@@ -22,8 +22,7 @@ pub struct CacheArgs {
/// Path to the cache directory.
///
/// Defaults to `$HOME/Library/Caches/uv` on macOS, `$XDG_CACHE_HOME/uv` or `$HOME/.cache/uv` on
/// Linux, and `$HOME/.cache/<project_path> {FOLDERID_LocalAppData}/<project_path>/cache/uv`
/// on Windows.
/// Linux, and `{FOLDERID_LocalAppData}\uv\cache` on Windows.
#[arg(global = true, long, env = "UV_CACHE_DIR")]
pub cache_dir: Option<PathBuf>,
}