This commit is contained in:
Joshua Nelson 2020-12-30 20:38:58 -05:00
parent 2179313dcf
commit ea3118ca0d
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ impl From<!> for TryFromIntError {
///
/// Among other causes, `ParseIntError` can be thrown because of leading or trailing whitespace
/// in the string e.g., when it is obtained from the standard input.
/// Using the [`str.trim()`] method ensures that no whitespace remains before parsing.
/// Using the [`str::trim()`] method ensures that no whitespace remains before parsing.
///
/// # Example
///