From da89e530905111822a0d34ea8fab9853d33d0d07 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 26 Apr 2024 22:28:00 -0400 Subject: [PATCH] Fix documentation on `--cache-dir` CLI (#3285) ## Summary This looks like a copy-paste error. --- crates/uv-cache/src/cli.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/uv-cache/src/cli.rs b/crates/uv-cache/src/cli.rs index 191118f69..2d9bac089 100644 --- a/crates/uv-cache/src/cli.rs +++ b/crates/uv-cache/src/cli.rs @@ -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/ {FOLDERID_LocalAppData}//cache/uv` - /// on Windows. + /// Linux, and `{FOLDERID_LocalAppData}\uv\cache` on Windows. #[arg(global = true, long, env = "UV_CACHE_DIR")] pub cache_dir: Option, }