about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKyle Lin <minecraft.kyle.train@gmail.com>2023-07-03 08:46:33 +0800
committerKyle Lin <minecraft.kyle.train@gmail.com>2023-08-18 15:19:23 +0800
commit2ec3e297ab054054d428d7d28666b95484b57fc0 (patch)
tree60830ee16bd67ae271aeb43115476c69774bb257
parent713e78cdd8d24cbefbc6b1ff97b15bf4c30b6567 (diff)
downloadrust-2ec3e297ab054054d428d7d28666b95484b57fc0.tar.gz
rust-2ec3e297ab054054d428d7d28666b95484b57fc0.zip
tidy doc link
-rw-r--r--library/core/src/primitive_docs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/primitive_docs.rs b/library/core/src/primitive_docs.rs
index 80289ca08c3..7180236fb22 100644
--- a/library/core/src/primitive_docs.rs
+++ b/library/core/src/primitive_docs.rs
@@ -624,7 +624,7 @@ mod prim_pointer {}
 /// array implementations) succeed if the input slice length is the same as the result
 /// array length. They optimize especially well when the optimizer can easily determine
 /// the slice length, e.g. `<[u8; 4]>::try_from(&slice[4..8]).unwrap()`. Array implements
-/// [TryFrom](crate::convert::TryFrom) returning:
+/// [TryFrom] returning:
 ///
 /// - `[T; N]` copies from the slice's elements
 /// - `&[T; N]` references the original slice's elements