We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf69238 commit 19b98f3Copy full SHA for 19b98f3
src/libcore/str/mod.rs
@@ -327,7 +327,9 @@ unsafe fn from_raw_parts_mut<'a>(p: *mut u8, len: usize) -> &'a mut str {
327
///
328
/// This function is unsafe because it does not check that the bytes passed to
329
/// it are valid UTF-8. If this constraint is violated, undefined behavior
330
-/// results, as the rest of Rust assumes that `&str`s are valid UTF-8.
+/// results, as the rest of Rust assumes that [`&str`]s are valid UTF-8.
331
+///
332
+/// [`&str`]: ../../std/primitive.str.html
333
334
/// # Examples
335
0 commit comments