We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ParseIntError
1 parent 1b0bc59 commit ae5cb5fCopy full SHA for ae5cb5f
library/core/src/num/error.rs
@@ -45,8 +45,11 @@ impl From<!> for TryFromIntError {
45
46
/// An error which can be returned when parsing an integer.
47
///
48
-/// This error is used as the error type for the `from_str_radix()` functions
49
-/// on the primitive integer types, such as [`i8::from_str_radix`].
+/// For example, this error is returned by the `from_str_radix()` functions
+/// on the primitive integer types (such as [`i8::from_str_radix`])
50
+/// and is used as the error type in their [`FromStr`] implementations.
51
+///
52
+/// [`FromStr`]: crate::str::FromStr
53
54
/// # Potential causes
55
0 commit comments