about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCarlos Liam <carlos@aarzee.me>2015-10-06 13:06:39 -0400
committerCarlos Liam <carlos@aarzee.me>2015-10-06 13:06:39 -0400
commitaba267fd0dfb7c4d9f10f530adbccc7ff4626545 (patch)
treee135ea87e6c08ca4b61762527d229530cc47f22c
parent3967e1c9409873ce0f3324fb78ea2d82aa83f271 (diff)
downloadrust-aba267fd0dfb7c4d9f10f530adbccc7ff4626545.tar.gz
rust-aba267fd0dfb7c4d9f10f530adbccc7ff4626545.zip
Replace multiple trailing newlines with a single trailing newline
Sorry I didn’t get this in the last PR (#28864), I hadn’t thought of it.
-rw-r--r--src/doc/nomicon/ownership.md1
-rw-r--r--src/doc/trpl/ownership.md10
-rw-r--r--src/libstd/os/freebsd/raw.rs1
-rw-r--r--src/test/compile-fail/transmute-imut-to-mut.rs1
4 files changed, 0 insertions, 13 deletions
diff --git a/src/doc/nomicon/ownership.md b/src/doc/nomicon/ownership.md
index e80c64c3543..6be8d3b7028 100644
--- a/src/doc/nomicon/ownership.md
+++ b/src/doc/nomicon/ownership.md
@@ -64,4 +64,3 @@ does in fact live as long as we needed. However it was *changed* while we had
 a reference into it. This is why Rust requires any references to freeze the
 referent and its owners.
 
-
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md
index 5ddbdd6df00..89116f77b41 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -236,13 +236,3 @@ complicated.
 Luckily, Rust offers a feature, borrowing, which helps us solve this problem.
 It’s the topic of the next section!
 
-
-
-
-
-
-
-
-
-
-
diff --git a/src/libstd/os/freebsd/raw.rs b/src/libstd/os/freebsd/raw.rs
index 65390aee0e1..761e6c96ab7 100644
--- a/src/libstd/os/freebsd/raw.rs
+++ b/src/libstd/os/freebsd/raw.rs
@@ -138,4 +138,3 @@ mod arch {
     }
 }
 
-
diff --git a/src/test/compile-fail/transmute-imut-to-mut.rs b/src/test/compile-fail/transmute-imut-to-mut.rs
index 2e076337f53..62db4c5d366 100644
--- a/src/test/compile-fail/transmute-imut-to-mut.rs
+++ b/src/test/compile-fail/transmute-imut-to-mut.rs
@@ -17,4 +17,3 @@ fn main() {
     //~^ ERROR mutating transmuted &mut T from &T may cause undefined behavior
 }
 
-