Skip to content

Commit f054a84

Browse files
committed
fix: dir comment
1 parent 4b1553f commit f054a84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/pgt_fs/src/dir.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use tracing::warn;
44

55
pub fn ensure_cache_dir() -> PathBuf {
66
if let Some(proj_dirs) = ProjectDirs::from("dev", "supabase-community", "pgt") {
7-
// Linux: /home/alice/.cache/pglt
8-
// Win: C:\Users\Alice\AppData\Local\supabase-community\pglt\cache
7+
// Linux: /home/alice/.cache/pgt
8+
// Win: C:\Users\Alice\AppData\Local\supabase-community\pgt\cache
99
// Mac: /Users/Alice/Library/Caches/dev.supabase-community.pgt
1010
let cache_dir = proj_dirs.cache_dir().to_path_buf();
1111
if let Err(err) = fs::create_dir_all(&cache_dir) {

0 commit comments

Comments
 (0)