Skip to content

Commit 247fc38

Browse files
authored
Tidy error: add a new line
The error was: ``` [00:05:25] tidy error: /checkout/src/libcore/num/mod.rs:3848: trailing whitespace [00:05:25] tidy error: /checkout/src/libcore/num/mod.rs:3851: line longer than 100 chars [00:05:25] tidy error: /checkout/src/libcore/num/mod.rs:3851: trailing whitespace [00:05:26] some tidy checks failed ``` The line was truncated to 92 characters.
1 parent c68440c commit 247fc38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/num/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -3848,7 +3848,8 @@ fn from_str_radix<T: FromStrRadixHelper>(src: &str, radix: u32) -> Result<T, Par
38483848
///
38493849
/// # Potential causes
38503850
///
3851-
/// Among other causes, `ParseIntError` can be thrown because of leading or trailing whitespaces in the string e.g. when it is getted from the standard input.
3851+
/// Among other causes, `ParseIntError` can be thrown because of leading or trailing whitespaces
3852+
/// in the string e.g. when it is getted from the standard input.
38523853
/// Using the [`str.trim()`] method ensures that no whitespace remains before parsing.
38533854
///
38543855
/// [`str.trim()`]: ../../std/primitive.str.html#method.trim

0 commit comments

Comments
 (0)