about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authordianne <diannes.gm@gmail.com>2025-07-16 01:44:02 -0700
committerdianne <diannes.gm@gmail.com>2025-07-16 01:44:02 -0700
commit41e6f767b64cebd08e1a25b18dfea7c13bf36a6a (patch)
tree0f72748e09cfd07d01bff28a5ab5b3b23e5dfbc7 /src/tools
parent3014e79f9c8d5510ea7b3a3b70d171d0948b1e96 (diff)
future-incompat lints: don't link to the nightly edition-guide version
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/clippy/tests/ui/checked_unwrap/simple_conditionals.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/checked_unwrap/simple_conditionals.stderr b/src/tools/clippy/tests/ui/checked_unwrap/simple_conditionals.stderr
index a4bf0099244..26e360112b6 100644
--- a/src/tools/clippy/tests/ui/checked_unwrap/simple_conditionals.stderr
+++ b/src/tools/clippy/tests/ui/checked_unwrap/simple_conditionals.stderr
@@ -328,7 +328,7 @@ error: creating a shared reference to mutable static
 LL |         if X.is_some() {
    |            ^^^^^^^^^^^ shared reference to mutable static
    |
-   = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html>
+   = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
    = note: `#[deny(static_mut_refs)]` on by default