about summary refs log tree commit diff
path: root/library/alloc/src
diff options
context:
space:
mode:
authorBoxy <rust@boxyuwu.dev>2025-04-03 23:10:20 +0100
committerBoxy <rust@boxyuwu.dev>2025-04-09 12:29:59 +0100
commitacf678bd4c796bcc220fea8f9702777fd11b1827 (patch)
treee5ced1e2a81554d162255d5defb119d6be460844 /library/alloc/src
parentc274459b63a7b89e852afd6562890d255bea850e (diff)
downloadrust-acf678bd4c796bcc220fea8f9702777fd11b1827.tar.gz
rust-acf678bd4c796bcc220fea8f9702777fd11b1827.zip
intra-doc link
Diffstat (limited to 'library/alloc/src')
-rw-r--r--library/alloc/src/collections/btree/set_val.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/collections/btree/set_val.rs b/library/alloc/src/collections/btree/set_val.rs
index cf30160bfbb..5037b6578e8 100644
--- a/library/alloc/src/collections/btree/set_val.rs
+++ b/library/alloc/src/collections/btree/set_val.rs
@@ -9,7 +9,7 @@ pub(super) struct SetValZST;
 /// Returns `true` only for type `SetValZST`, `false` for all other types (blanket implementation).
 /// `TypeId` requires a `'static` lifetime, use of this trait avoids that restriction.
 ///
-/// [`TypeId`]: std::any::TypeId
+/// [`TypeId`]: core::any::TypeId
 pub(super) trait IsSetVal {
     fn is_set_val() -> bool;
 }