File tree 1 file changed +0
-10
lines changed
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,9 @@ use super::MAX;
23
23
/// [`char`]s. `from_u32()` will return `None` if the input is not a valid value
24
24
/// for a [`char`].
25
25
///
26
- /// [`char`]: ../../std/primitive.char.html
27
- /// [`u32`]: ../../std/primitive.u32.html
28
- ///
29
26
/// For an unsafe version of this function which ignores these checks, see
30
27
/// [`from_u32_unchecked`].
31
28
///
32
- /// [`from_u32_unchecked`]: fn.from_u32_unchecked.html
33
- ///
34
29
/// # Examples
35
30
///
36
31
/// Basic usage:
@@ -74,17 +69,12 @@ pub fn from_u32(i: u32) -> Option<char> {
74
69
/// [`char`]s. `from_u32_unchecked()` will ignore this, and blindly cast to
75
70
/// [`char`], possibly creating an invalid one.
76
71
///
77
- /// [`char`]: ../../std/primitive.char.html
78
- /// [`u32`]: ../../std/primitive.u32.html
79
- ///
80
72
/// # Safety
81
73
///
82
74
/// This function is unsafe, as it may construct invalid `char` values.
83
75
///
84
76
/// For a safe version of this function, see the [`from_u32`] function.
85
77
///
86
- /// [`from_u32`]: fn.from_u32.html
87
- ///
88
78
/// # Examples
89
79
///
90
80
/// Basic usage:
You can’t perform that action at this time.
0 commit comments