Skip to content

Commit 80660d6

Browse files
committed
Auto merge of #28864 - aarzee:master, r=steveklabnik
Remove leading newlines in files and replace lines containing only whitespace with blank lines
2 parents e7b6056 + aba267f commit 80660d6

33 files changed

+45
-59
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Read ["Installing Rust"] from [The Book].
6767
```sh
6868
# Update package mirrors (may be needed if you have a fresh install of MSYS2)
6969
$ pacman -Sy pacman-mirrors
70-
70+
7171
# Choose one based on platform:
7272
$ pacman -S mingw-w64-i686-toolchain
7373
$ pacman -S mingw-w64-x86_64-toolchain

src/doc/nomicon/ownership.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ does in fact live as long as we needed. However it was *changed* while we had
6464
a reference into it. This is why Rust requires any references to freeze the
6565
referent and its owners.
6666

67-

src/doc/trpl/ownership.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -236,13 +236,3 @@ complicated.
236236
Luckily, Rust offers a feature, borrowing, which helps us solve this problem.
237237
It’s the topic of the next section!
238238

239-
240-
241-
242-
243-
244-
245-
246-
247-
248-

src/doc/trpl/references-and-borrowing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,15 +363,15 @@ note: reference must be valid for the block suffix following statement 0 at
363363
let y: &i32;
364364
let x = 5;
365365
y = &x;
366-
366+
367367
println!("{}", y);
368368
}
369369
370370
note: ...but borrowed value is only valid for the block suffix following
371371
statement 1 at 3:14
372372
let x = 5;
373373
y = &x;
374-
374+
375375
println!("{}", y);
376376
}
377377
```

src/libbacktrace/ChangeLog.jit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
* configure.ac: Add --enable-host-shared.
88
* configure: Regenerate.
9-
9+
1010
Copyright (C) 2013-2014 Free Software Foundation, Inc.
1111

1212
Copying and distribution of this file, with or without modification,

src/libbacktrace/alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are
1313
notice, this list of conditions and the following disclaimer in
1414
the documentation and/or other materials provided with the
1515
distribution.
16-
16+
1717
(3) The name of the author may not be used to
1818
endorse or promote products derived from this software without
1919
specific prior written permission.

src/libbacktrace/atomic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are
1313
notice, this list of conditions and the following disclaimer in
1414
the documentation and/or other materials provided with the
1515
distribution.
16-
16+
1717
(3) The name of the author may not be used to
1818
endorse or promote products derived from this software without
1919
specific prior written permission.

src/libbacktrace/backtrace-supported.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ met:
1313
notice, this list of conditions and the following disclaimer in
1414
the documentation and/or other materials provided with the
1515
distribution.
16-
16+
1717
(3) The name of the author may not be used to
1818
endorse or promote products derived from this software without
1919
specific prior written permission.

src/libbacktrace/backtrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are
1313
notice, this list of conditions and the following disclaimer in
1414
the documentation and/or other materials provided with the
1515
distribution.
16-
16+
1717
(3) The name of the author may not be used to
1818
endorse or promote products derived from this software without
1919
specific prior written permission.

src/libbacktrace/backtrace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are
1313
notice, this list of conditions and the following disclaimer in
1414
the documentation and/or other materials provided with the
1515
distribution.
16-
16+
1717
(3) The name of the author may not be used to
1818
endorse or promote products derived from this software without
1919
specific prior written permission.

0 commit comments

Comments
 (0)