about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSongbird0 <Songbird0@users.noreply.github.com>2018-03-04 22:18:42 +0100
committerGitHub <noreply@github.com>2018-03-04 22:18:42 +0100
commit247fc38aebf752528078349f913764ba6a8edf59 (patch)
tree1b893e5e22e79d7c3983cfc3547a1d53cd2f21cf
parentc68440cad49f6d0cda09f8c7d4989ff63f55a26e (diff)
downloadrust-247fc38aebf752528078349f913764ba6a8edf59.tar.gz
rust-247fc38aebf752528078349f913764ba6a8edf59.zip
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.
-rw-r--r--src/libcore/num/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs
index 1b51ebefb60..00a46dca876 100644
--- a/src/libcore/num/mod.rs
+++ b/src/libcore/num/mod.rs
@@ -3848,7 +3848,8 @@ fn from_str_radix<T: FromStrRadixHelper>(src: &str, radix: u32) -> Result<T, Par
 /// 
 /// # Potential causes
 ///
-/// 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. 
+/// 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. 
 /// Using the [`str.trim()`] method ensures that no whitespace remains before parsing.
 ///
 /// [`str.trim()`]: ../../std/primitive.str.html#method.trim