From 4355d5de08f72652535ec3b3b7c32ac0133d087b Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Sat, 8 Feb 2025 17:48:28 +0100 Subject: [PATCH] Fix doc --- crates/ruff_db/src/system/os.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_db/src/system/os.rs b/crates/ruff_db/src/system/os.rs index afd255f4255c9..01f58ec38d851 100644 --- a/crates/ruff_db/src/system/os.rs +++ b/crates/ruff_db/src/system/os.rs @@ -362,7 +362,7 @@ pub(super) mod testing { static USER_CONFIGURATION_DIRECTORY: RefCell>> = const {RefCell::new(None)}; } - /// A scoped override of the [user's configuration directory](super::OsSystem::user_config_directory) for the current thread. + /// A scoped override of the [user's configuration directory](crate::System::user_config_directory) for the [`OsSystem`](super::OsSystem) in the current thread. /// /// When possible, prefer overriding the user's configuration directory for the entire process /// by setting the `APPDATA` (windows) or `XDG_CONFIG_HOME` (unix and other platforms) environment variables.