Skip to content

Commit b5ccda0

Browse files
committed
Auto merge of #40544 - frewsxcv:rollup, r=frewsxcv
Rollup of 18 pull requests - Successful merges: #40387, #40433, #40452, #40456, #40457, #40463, #40466, #40467, #40495, #40496, #40497, #40500, #40503, #40505, #40512, #40514, #40517, #40520 - Failed merges:
2 parents 0aeb9c1 + a2d2a97 commit b5ccda0

File tree

118 files changed

+913
-699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+913
-699
lines changed

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
url = https://github.com/rust-lang/libc.git
2121
[submodule "src/doc/nomicon"]
2222
path = src/doc/nomicon
23-
url = https://github.com/rust-lang-nursery/nomicon
23+
url = https://github.com/rust-lang-nursery/nomicon.git
2424
[submodule "src/tools/cargo"]
2525
path = cargo
26-
url = https://github.com/rust-lang/cargo
26+
url = https://github.com/rust-lang/cargo.git
2727
[submodule "reference"]
2828
path = src/doc/reference
2929
url = https://github.com/rust-lang-nursery/reference.git

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,9 @@ If you’d like to build the documentation, it’s almost the same:
161161
$ ./x.py doc
162162
```
163163

164-
The generated documentation will appear in a top-level `doc` directory,
165-
created by the `make` rule.
164+
The generated documentation will appear under `doc` in the `build` directory for
165+
the ABI used. I.e., if the ABI was `x86_64-pc-windows-msvc`, the directory will be
166+
`build\x86_64-pc-windows-msvc\doc`.
166167

167168
## Notes
168169

RELEASES.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Version 1.16.0 (2017-03-16)
44
Language
55
--------
66

7-
* Lifetimes in statics and consts default to `'static`. [RFC 1623]
87
* [The compiler's `dead_code` lint now accounts for type aliases][38051].
98
* [Uninhabitable enums (those without any variants) no longer permit wildcard
109
match patterns][38069]
@@ -5056,7 +5055,7 @@ Version 0.1 (2012-01-20)
50565055

50575056
* Compiler works with the following configurations:
50585057
* Linux: x86 and x86_64 hosts and targets
5059-
* MacOS: x86 and x86_64 hosts and targets
5058+
* macOS: x86 and x86_64 hosts and targets
50605059
* Windows: x86 hosts and targets
50615060

50625061
* Cross compilation / multi-target configuration supported.

src/bootstrap/bin/rustc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ fn main() {
182182
if env::var("RUSTC_RPATH") == Ok("true".to_string()) {
183183
let rpath = if target.contains("apple") {
184184

185-
// Note that we need to take one extra step on OSX to also pass
185+
// Note that we need to take one extra step on macOS to also pass
186186
// `-Wl,-instal_name,@rpath/...` to get things to work right. To
187187
// do that we pass a weird flag to the compiler to get it to do
188188
// so. Note that this is definitely a hack, and we should likely

src/bootstrap/check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ pub fn compiletest(build: &Build,
176176
cmd.arg("--docck-python").arg(build.python());
177177

178178
if build.config.build.ends_with("apple-darwin") {
179-
// Force /usr/bin/python on OSX for LLDB tests because we're loading the
179+
// Force /usr/bin/python on macOS for LLDB tests because we're loading the
180180
// LLDB plugin's compiled module which only works with the system python
181181
// (namely not Homebrew-installed python)
182182
cmd.arg("--lldb-python").arg("/usr/bin/python");

src/bootstrap/compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ pub fn rustc(build: &Build, target: &str, compiler: &Compiler) {
249249
cargo.env("CFG_LLVM_ROOT", s);
250250
}
251251
// Building with a static libstdc++ is only supported on linux right now,
252-
// not for MSVC or OSX
252+
// not for MSVC or macOS
253253
if build.config.llvm_static_stdcpp &&
254254
!target.contains("windows") &&
255255
!target.contains("apple") {

src/bootstrap/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ impl Build {
846846
.filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
847847
.collect::<Vec<_>>();
848848

849-
// If we're compiling on OSX then we add a few unconditional flags
849+
// If we're compiling on macOS then we add a few unconditional flags
850850
// indicating that we want libc++ (more filled out than libstdc++) and
851851
// we want to compile for 10.7. This way we can ensure that
852852
// LLVM/jemalloc/etc are all properly compiled.

src/bootstrap/sanity.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ pub fn check(build: &mut Build) {
151151
}
152152

153153
for target in build.config.target.iter() {
154-
// Can't compile for iOS unless we're on OSX
154+
// Can't compile for iOS unless we're on macOS
155155
if target.contains("apple-ios") &&
156156
!build.config.build.contains("apple-darwin") {
157-
panic!("the iOS target is only supported on OSX");
157+
panic!("the iOS target is only supported on macOS");
158158
}
159159

160160
// Make sure musl-root is valid if specified

src/doc/book/src/documentation.md

+2-19
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,6 @@ more than one section:
170170
# fn foo() {}
171171
```
172172

173-
Let's discuss the details of these code blocks.
174-
175173
#### Code block annotations
176174

177175
To write some Rust code in a comment, use the triple graves:
@@ -183,23 +181,8 @@ To write some Rust code in a comment, use the triple graves:
183181
# fn foo() {}
184182
```
185183

186-
If you want something that's not Rust code, you can add an annotation:
187-
188-
```rust
189-
/// ```c
190-
/// printf("Hello, world\n");
191-
/// ```
192-
# fn foo() {}
193-
```
194-
195-
This will highlight according to whatever language you're showing off.
196-
If you're only showing plain text, choose `text`.
197-
198-
It's important to choose the correct annotation here, because `rustdoc` uses it
199-
in an interesting way: It can be used to actually test your examples in a
200-
library crate, so that they don't get out of date. If you have some C code but
201-
`rustdoc` thinks it's Rust because you left off the annotation, `rustdoc` will
202-
complain when trying to generate the documentation.
184+
This will add code highlighting. If you are only showing plain text, put `text`
185+
instead of `rust` after the triple graves (see below).
203186

204187
## Documentation as tests
205188

src/doc/book/src/ffi.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ attribute turns off Rust's name mangling, so that it is easier to link to.
687687

688688
It’s important to be mindful of `panic!`s when working with FFI. A `panic!`
689689
across an FFI boundary is undefined behavior. If you’re writing code that may
690-
panic, you should run it in a closure with [`catch_unwind()`]:
690+
panic, you should run it in a closure with [`catch_unwind`]:
691691

692692
```rust
693693
use std::panic::catch_unwind;
@@ -706,11 +706,11 @@ pub extern fn oh_no() -> i32 {
706706
fn main() {}
707707
```
708708

709-
Please note that [`catch_unwind()`] will only catch unwinding panics, not
710-
those who abort the process. See the documentation of [`catch_unwind()`]
709+
Please note that [`catch_unwind`] will only catch unwinding panics, not
710+
those who abort the process. See the documentation of [`catch_unwind`]
711711
for more information.
712712

713-
[`catch_unwind()`]: ../std/panic/fn.catch_unwind.html
713+
[`catch_unwind`]: ../std/panic/fn.catch_unwind.html
714714

715715
# Representing opaque structs
716716

src/doc/book/src/guessing-game.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ The next part will use this handle to get input from the user:
217217
.read_line(&mut guess)
218218
```
219219

220-
Here, we call the [`read_line()`][read_line] method on our handle.
220+
Here, we call the [`read_line`][read_line] method on our handle.
221221
[Methods][method] are like associated functions, but are only available on a
222222
particular instance of a type, rather than the type itself. We’re also passing
223223
one argument to `read_line()`: `&mut guess`.

src/doc/book/src/testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ And that's reflected in the summary line:
147147
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured
148148
```
149149

150-
We also get a non-zero status code. We can use `$?` on OS X and Linux:
150+
We also get a non-zero status code. We can use `$?` on macOS and Linux:
151151

152152
```bash
153153
$ echo $?

src/doc/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ Other unofficial documentation may exist elsewhere; for example, the [Rust
1111
Learning] project collects documentation from the community, and [Docs.rs]
1212
builds documentation for individual Rust packages.
1313

14-
## API Documentation
14+
# API Documentation
1515

1616
Rust provides a standard library with a number of features; [we host its
1717
documentation here][api].
1818

19-
## Extended Error Documentation
19+
# Extended Error Documentation
2020

2121
Many of Rust's errors come with error codes, and you can request extended
2222
diagnostics from the compiler on those errors. We also [have the text of those
2323
extended errors on the web][err], if you prefer to read them that way.
2424

25-
## The Rust Bookshelf
25+
# The Rust Bookshelf
2626

2727
Rust provides a number of book-length sets of documentation, collectively
2828
nicknamed 'The Rust Bookshelf.'

src/doc/unstable-book/src/concat-idents.md

+12
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,17 @@ The tracking issue for this feature is: [#29599]
66

77
------------------------
88

9+
The `concat_idents` feature adds a macro for concatenating multiple identifiers
10+
into one identifier.
911

12+
## Examples
1013

14+
```rust
15+
#![feature(concat_idents)]
16+
17+
fn main() {
18+
fn foobar() -> u32 { 23 }
19+
let f = concat_idents!(foo, bar);
20+
assert_eq!(f(), 23);
21+
}
22+
```

src/doc/unstable-book/src/conservative-impl-trait.md

+56
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,61 @@ The tracking issue for this feature is: [#34511]
66

77
------------------------
88

9+
The `conservative_impl_trait` feature allows a conservative form of abstract
10+
return types.
911

12+
Abstract return types allow a function to hide a concrete return type behind a
13+
trait interface similar to trait objects, while still generating the same
14+
statically dispatched code as with concrete types.
1015

16+
## Examples
17+
18+
```rust
19+
#![feature(conservative_impl_trait)]
20+
21+
fn even_iter() -> impl Iterator<Item=u32> {
22+
(0..).map(|n| n * 2)
23+
}
24+
25+
fn main() {
26+
let first_four_even_numbers = even_iter().take(4).collect::<Vec<_>>();
27+
assert_eq!(first_four_even_numbers, vec![0, 2, 4, 6]);
28+
}
29+
```
30+
31+
## Background
32+
33+
In today's Rust, you can write function signatures like:
34+
35+
````rust,ignore
36+
fn consume_iter_static<I: Iterator<u8>>(iter: I) { }
37+
38+
fn consume_iter_dynamic(iter: Box<Iterator<u8>>) { }
39+
````
40+
41+
In both cases, the function does not depend on the exact type of the argument.
42+
The type held is "abstract", and is assumed only to satisfy a trait bound.
43+
44+
* In the `_static` version using generics, each use of the function is
45+
specialized to a concrete, statically-known type, giving static dispatch,
46+
inline layout, and other performance wins.
47+
* In the `_dynamic` version using trait objects, the concrete argument type is
48+
only known at runtime using a vtable.
49+
50+
On the other hand, while you can write:
51+
52+
````rust,ignore
53+
fn produce_iter_dynamic() -> Box<Iterator<u8>> { }
54+
````
55+
56+
...but you _cannot_ write something like:
57+
58+
````rust,ignore
59+
fn produce_iter_static() -> Iterator<u8> { }
60+
````
61+
62+
That is, in today's Rust, abstract return types can only be written using trait
63+
objects, which can be a significant performance penalty. This RFC proposes
64+
"unboxed abstract types" as a way of achieving signatures like
65+
`produce_iter_static`. Like generics, unboxed abstract types guarantee static
66+
dispatch and inline data layout.

src/doc/unstable-book/src/const-fn.md

+19
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,24 @@ The tracking issue for this feature is: [#24111]
66

77
------------------------
88

9+
The `const_fn` feature allows marking free functions and inherent methods as
10+
`const`, enabling them to be called in constants contexts, with constant
11+
arguments.
912

13+
## Examples
1014

15+
```rust
16+
#![feature(const_fn)]
17+
18+
const fn double(x: i32) -> i32 {
19+
x * 2
20+
}
21+
22+
const FIVE: i32 = 5;
23+
const TEN: i32 = double(FIVE);
24+
25+
fn main() {
26+
assert_eq!(5, FIVE);
27+
assert_eq!(10, TEN);
28+
}
29+
```

src/doc/unstable-book/src/const-indexing.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,14 @@ The tracking issue for this feature is: [#29947]
66

77
------------------------
88

9+
The `const_indexing` feature allows the constant evaluation of index operations
10+
on constant arrays and repeat expressions.
911

12+
## Examples
1013

14+
```rust
15+
#![feature(const_indexing)]
16+
17+
const ARR: [usize; 5] = [1, 2, 3, 4, 5];
18+
const ARR2: [usize; ARR[1]] = [42, 99];
19+
```

src/doc/unstable-book/src/i128-type.md

+15
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,20 @@ The tracking issue for this feature is: [#35118]
66

77
------------------------
88

9+
The `i128_type` feature adds support for 128 bit signed and unsigned integer
10+
types.
911

12+
```rust
13+
#![feature(i128_type)]
14+
15+
fn main() {
16+
assert_eq!(1u128 + 1u128, 2u128);
17+
assert_eq!(u128::min_value(), 0);
18+
assert_eq!(u128::max_value(), 340282366920938463463374607431768211455);
19+
20+
assert_eq!(1i128 - 2i128, -1i128);
21+
assert_eq!(i128::min_value(), -170141183460469231731687303715884105728);
22+
assert_eq!(i128::max_value(), 170141183460469231731687303715884105727);
23+
}
24+
```
1025

src/doc/unstable-book/src/non-ascii-idents.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,13 @@ The tracking issue for this feature is: [#28979]
66

77
------------------------
88

9+
The `non_ascii_idents` feature adds support for non-ASCII identifiers.
910

11+
## Examples
1012

13+
```rust
14+
#![feature(non_ascii_idents)]
15+
16+
const ε: f64 = 0.00001f64;
17+
const Π: f64 = 3.14f64;
18+
```

src/liballoc/rc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! Single-threaded reference-counting pointers.
1414
//!
1515
//! The type [`Rc<T>`][`Rc`] provides shared ownership of a value of type `T`,
16-
//! allocated in the heap. Invoking [`clone()`][clone] on [`Rc`] produces a new
16+
//! allocated in the heap. Invoking [`clone`][clone] on [`Rc`] produces a new
1717
//! pointer to the same value in the heap. When the last [`Rc`] pointer to a
1818
//! given value is destroyed, the pointed-to value is also destroyed.
1919
//!
@@ -30,7 +30,7 @@
3030
//! threads. If you need multi-threaded, atomic reference counting, use
3131
//! [`sync::Arc`][arc].
3232
//!
33-
//! The [`downgrade()`][downgrade] method can be used to create a non-owning
33+
//! The [`downgrade`][downgrade] method can be used to create a non-owning
3434
//! [`Weak`] pointer. A [`Weak`] pointer can be [`upgrade`][upgrade]d
3535
//! to an [`Rc`], but this will return [`None`] if the value has
3636
//! already been dropped.

src/liballoc_jemalloc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub use imp::*;
3030
mod imp {
3131
use libc::{c_int, c_void, size_t};
3232

33-
// Note that the symbols here are prefixed by default on OSX and Windows (we
33+
// Note that the symbols here are prefixed by default on macOS and Windows (we
3434
// don't explicitly request it), and on Android and DragonFly we explicitly
3535
// request it as unprefixing cause segfaults (mismatches in allocators).
3636
extern "C" {

src/libcollections/binary_heap.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@ pub struct BinaryHeap<T> {
218218
data: Vec<T>,
219219
}
220220

221-
/// A container object that represents the result of the [`peek_mut()`] method
221+
/// A container object that represents the result of the [`peek_mut`] method
222222
/// on `BinaryHeap`. See its documentation for details.
223223
///
224-
/// [`peek_mut()`]: struct.BinaryHeap.html#method.peek_mut
224+
/// [`peek_mut`]: struct.BinaryHeap.html#method.peek_mut
225225
#[stable(feature = "binary_heap_peek_mut", since = "1.12.0")]
226226
pub struct PeekMut<'a, T: 'a + Ord> {
227227
heap: &'a mut BinaryHeap<T>,

0 commit comments

Comments
 (0)