Skip to content

Commit 59152a4

Browse files
authored
Auto merge of #34525 - GuillaumeGomez:rollup, r=GuillaumeGomez
Rollup of 13 pull requests - Successful merges: #34080, #34287, #34328, #34406, #34415, #34442, #34462, #34471, #34475, #34479, #34517, #34518, #34524 - Failed merges: #33951
2 parents ea0dc92 + dd56a6a commit 59152a4

File tree

15 files changed

+141
-75
lines changed

15 files changed

+141
-75
lines changed

src/doc/book/closures.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ to our closure when we pass it to `call_with_one`, so we use `&||`.
322322
A quick note about closures that use explicit lifetimes. Sometimes you might have a closure
323323
that takes a reference like so:
324324

325-
```
325+
```rust
326326
fn call_with_ref<F>(some_closure:F) -> i32
327327
where F: Fn(&i32) -> i32 {
328328

@@ -334,8 +334,8 @@ fn call_with_ref<F>(some_closure:F) -> i32
334334
Normally you can specify the lifetime of the parameter to our closure. We
335335
could annotate it on the function declaration:
336336

337-
```ignore
338-
fn call_with_ref<'a, F>(some_closure:F) -> i32
337+
```rust,ignore
338+
fn call_with_ref<'a, F>(some_closure:F) -> i32
339339
where F: Fn(&'a 32) -> i32 {
340340
```
341341

@@ -353,11 +353,11 @@ fn call_with_ref<F>(some_closure:F) -> i32
353353
where F: for<'a> Fn(&'a 32) -> i32 {
354354
```
355355

356-
This lets the Rust compiler find the minimum lifetime to invoke our closure and
356+
This lets the Rust compiler find the minimum lifetime to invoke our closure and
357357
satisfy the borrow checker's rules. Our function then compiles and excutes as we
358358
expect.
359359

360-
```
360+
```rust
361361
fn call_with_ref<F>(some_closure:F) -> i32
362362
where F: for<'a> Fn(&'a i32) -> i32 {
363363

src/doc/book/crates-and-modules.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ As an example, let’s make a *phrases* crate, which will give us various phrase
2222
in different languages. To keep things simple, we’ll stick to ‘greetings’ and
2323
‘farewells’ as two kinds of phrases, and use English and Japanese (日本語) as
2424
two languages for those phrases to be in. We’ll use this module layout:
25-
2625
```text
2726
+-----------+
2827
+---| greetings |
29-
| +-----------+
30-
+---------+ |
28+
+---------+ | +-----------+
3129
+---| english |---+
3230
| +---------+ | +-----------+
3331
| +---| farewells |
@@ -37,8 +35,7 @@ two languages for those phrases to be in. We’ll use this module layout:
3735
| +---| greetings |
3836
| +----------+ | +-----------+
3937
+---| japanese |--+
40-
+----------+ |
41-
| +-----------+
38+
+----------+ | +-----------+
4239
+---| farewells |
4340
+-----------+
4441
```

src/doc/book/ownership.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Vectors have a [generic type][generics] `Vec<T>`, so in this example `v` will ha
6767

6868
[arrays]: primitive-types.html#arrays
6969
[vectors]: vectors.html
70-
[heap]: the-stack-and-the-heap.html
70+
[heap]: the-stack-and-the-heap.html#the-heap
7171
[stack]: the-stack-and-the-heap.html#the-stack
7272
[bindings]: variable-bindings.html
7373
[generics]: generics.html
@@ -136,6 +136,8 @@ Rust allocates memory for an integer [i32] on the [stack][sh], copies the bit
136136
pattern representing the value of 10 to the allocated memory and binds the
137137
variable name x to this memory region for future reference.
138138

139+
[i32]: primitive-types.html#numeric-types
140+
139141
Now consider the following code fragment:
140142

141143
```rust

src/doc/book/traits.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,10 @@ fn normal<T: ConvertTo<i64>>(x: &T) -> i64 {
397397
}
398398

399399
// can be called with T == i64
400-
fn inverse<T>() -> T
400+
fn inverse<T>(x: i32) -> T
401401
// this is using ConvertTo as if it were "ConvertTo<i64>"
402402
where i32: ConvertTo<T> {
403-
42.convert()
403+
x.convert()
404404
}
405405
```
406406

src/doc/reference.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,20 @@ Non-doc comments are interpreted as a form of whitespace.
114114

115115
## Whitespace
116116

117-
Whitespace is any non-empty string containing only the following characters:
118-
117+
Whitespace is any non-empty string containing only characters that have the
118+
`Pattern_White_Space` Unicode property, namely:
119+
120+
- `U+0009` (horizontal tab, `'\t'`)
121+
- `U+000A` (line feed, `'\n'`)
122+
- `U+000B` (vertical tab)
123+
- `U+000C` (form feed)
124+
- `U+000D` (carriage return, `'\r'`)
119125
- `U+0020` (space, `' '`)
120-
- `U+0009` (tab, `'\t'`)
121-
- `U+000A` (LF, `'\n'`)
122-
- `U+000D` (CR, `'\r'`)
126+
- `U+0085` (next line)
127+
- `U+200E` (left-to-right mark)
128+
- `U+200F` (right-to-left mark)
129+
- `U+2028` (line separator)
130+
- `U+2029` (paragraph separator)
123131

124132
Rust is a "free-form" language, meaning that all forms of whitespace serve only
125133
to separate _tokens_ in the grammar, and have no semantic significance.

src/libcollections/fmt.rs

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
//! format!("{:?}", (3, 4)); // => "(3, 4)"
2929
//! format!("{value}", value=4); // => "4"
3030
//! format!("{} {}", 1, 2); // => "1 2"
31+
//! format!("{:04}", 42); // => "0042" with leading zeros
3132
//! ```
3233
//!
3334
//! From these, you can see that the first argument is a format string. It is

src/librustc/diagnostics.rs

+15-25
Original file line numberDiff line numberDiff line change
@@ -673,45 +673,35 @@ extern "C" {
673673
"##,
674674

675675
E0269: r##"
676-
Functions must eventually return a value of their return type. For example, in
677-
the following function:
676+
A returned value was expected but not all control paths return one.
677+
678+
Erroneous code example:
678679
679680
```compile_fail,E0269
680681
fn abracada_FAIL() -> String {
681682
"this won't work".to_string();
683+
// error: not all control paths return a value
682684
}
683685
```
684686
685-
If the condition is true, the value `x` is returned, but if the condition is
686-
false, control exits the `if` block and reaches a place where nothing is being
687-
returned. All possible control paths must eventually return a `u8`, which is not
688-
happening here.
689-
690-
An easy fix for this in a complicated function is to specify a default return
691-
value, if possible:
687+
In the previous code, the function is supposed to return a `String`, however,
688+
the code returns nothing (because of the ';'). Another erroneous code would be:
692689
693-
```ignore
694-
fn foo(x: u8) -> u8 {
695-
if x > 0 {
696-
x // alternatively, `return x`
690+
```compile_fail
691+
fn abracada_FAIL(b: bool) -> u32 {
692+
if b {
693+
0
694+
} else {
695+
"a" // It fails because an `u32` was expected and something else is
696+
// returned.
697697
}
698-
// lots of other if branches
699-
0 // return 0 if all else fails
700698
}
701699
```
702700
703701
It is advisable to find out what the unhandled cases are and check for them,
704702
returning an appropriate value or panicking if necessary. Check if you need
705-
to remove a semicolon from the last expression, like in this case:
706-
707-
```ignore
708-
fn foo(x: u8) -> u8 {
709-
inner(2*x + 1);
710-
}
711-
```
712-
713-
The semicolon discards the return value of `inner`, instead of returning
714-
it from `foo`.
703+
to remove a semicolon from the last expression, like in the first erroneous
704+
code example.
715705
"##,
716706

717707
E0270: r##"

src/librustdoc/visit_ast.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
189189
}
190190
hir::ViewPathList(p, paths) => {
191191
let mine = paths.into_iter().filter(|path| {
192-
!self.maybe_inline_local(path.node.id(), None, false, om,
193-
please_inline)
192+
!self.maybe_inline_local(path.node.id(), path.node.rename(),
193+
false, om, please_inline)
194194
}).collect::<hir::HirVec<hir::PathListItem>>();
195195

196196
if mine.is_empty() {

src/libstd/io/util.rs

+23-6
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,11 @@ pub struct Empty { _priv: () }
7878
/// A slightly sad example of not reading anything into a buffer:
7979
///
8080
/// ```
81-
/// use std::io;
82-
/// use std::io::Read;
81+
/// use std::io::{self, Read};
8382
///
84-
/// # fn foo() -> io::Result<String> {
8583
/// let mut buffer = String::new();
86-
/// try!(io::empty().read_to_string(&mut buffer));
87-
/// # Ok(buffer)
88-
/// # }
84+
/// io::empty().read_to_string(&mut buffer).unwrap();
85+
/// assert!(buffer.is_empty());
8986
/// ```
9087
#[stable(feature = "rust1", since = "1.0.0")]
9188
pub fn empty() -> Empty { Empty { _priv: () } }
@@ -113,6 +110,16 @@ pub struct Repeat { byte: u8 }
113110
///
114111
/// All reads from this reader will succeed by filling the specified buffer with
115112
/// the given byte.
113+
///
114+
/// # Examples
115+
///
116+
/// ```
117+
/// use std::io::{self, Read};
118+
///
119+
/// let mut buffer = [0; 3];
120+
/// io::repeat(0b101).read_exact(&mut buffer).unwrap();
121+
/// assert_eq!(buffer, [0b101, 0b101, 0b101]);
122+
/// ```
116123
#[stable(feature = "rust1", since = "1.0.0")]
117124
pub fn repeat(byte: u8) -> Repeat { Repeat { byte: byte } }
118125

@@ -139,6 +146,16 @@ pub struct Sink { _priv: () }
139146
///
140147
/// All calls to `write` on the returned instance will return `Ok(buf.len())`
141148
/// and the contents of the buffer will not be inspected.
149+
///
150+
/// # Examples
151+
///
152+
/// ```rust
153+
/// use std::io::{self, Write};
154+
///
155+
/// let mut buffer = vec![1, 2, 3, 5, 8];
156+
/// let num_bytes = io::sink().write(&mut buffer).unwrap();
157+
/// assert_eq!(num_bytes, 5);
158+
/// ```
142159
#[stable(feature = "rust1", since = "1.0.0")]
143160
pub fn sink() -> Sink { Sink { _priv: () } }
144161

src/libstd/num/f32.rs

+10-8
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ impl f32 {
217217
/// // Values between `0` and `min` are Subnormal.
218218
/// assert!(!lower_than_min.is_normal());
219219
/// ```
220-
/// [subnormal]: http://en.wikipedia.org/wiki/Denormal_number
220+
/// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
221221
#[stable(feature = "rust1", since = "1.0.0")]
222222
#[inline]
223223
pub fn is_normal(self) -> bool { num::Float::is_normal(self) }
@@ -923,12 +923,12 @@ impl f32 {
923923
/// Computes the tangent of a number (in radians).
924924
///
925925
/// ```
926-
/// use std::f64;
926+
/// use std::f32;
927927
///
928-
/// let x = f64::consts::PI/4.0;
928+
/// let x = f32::consts::PI / 4.0;
929929
/// let abs_difference = (x.tan() - 1.0).abs();
930930
///
931-
/// assert!(abs_difference < 1e-10);
931+
/// assert!(abs_difference <= f32::EPSILON);
932932
/// ```
933933
#[stable(feature = "rust1", since = "1.0.0")]
934934
#[inline]
@@ -1052,12 +1052,14 @@ impl f32 {
10521052
/// number is close to zero.
10531053
///
10541054
/// ```
1055-
/// let x = 7.0f64;
1055+
/// use std::f32;
10561056
///
1057-
/// // e^(ln(7)) - 1
1058-
/// let abs_difference = (x.ln().exp_m1() - 6.0).abs();
1057+
/// let x = 6.0f32;
10591058
///
1060-
/// assert!(abs_difference < 1e-10);
1059+
/// // e^(ln(6)) - 1
1060+
/// let abs_difference = (x.ln().exp_m1() - 5.0).abs();
1061+
///
1062+
/// assert!(abs_difference <= f32::EPSILON);
10611063
/// ```
10621064
#[stable(feature = "rust1", since = "1.0.0")]
10631065
#[inline]

src/libstd/num/f64.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -147,23 +147,23 @@ impl f64 {
147147
/// [subnormal][subnormal], or `NaN`.
148148
///
149149
/// ```
150-
/// use std::f32;
150+
/// use std::f64;
151151
///
152-
/// let min = f32::MIN_POSITIVE; // 1.17549435e-38f64
153-
/// let max = f32::MAX;
154-
/// let lower_than_min = 1.0e-40_f32;
155-
/// let zero = 0.0f32;
152+
/// let min = f64::MIN_POSITIVE; // 2.2250738585072014e-308f64
153+
/// let max = f64::MAX;
154+
/// let lower_than_min = 1.0e-308_f64;
155+
/// let zero = 0.0f64;
156156
///
157157
/// assert!(min.is_normal());
158158
/// assert!(max.is_normal());
159159
///
160160
/// assert!(!zero.is_normal());
161-
/// assert!(!f32::NAN.is_normal());
162-
/// assert!(!f32::INFINITY.is_normal());
161+
/// assert!(!f64::NAN.is_normal());
162+
/// assert!(!f64::INFINITY.is_normal());
163163
/// // Values between `0` and `min` are Subnormal.
164164
/// assert!(!lower_than_min.is_normal());
165165
/// ```
166-
/// [subnormal]: http://en.wikipedia.org/wiki/Denormal_number
166+
/// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
167167
#[stable(feature = "rust1", since = "1.0.0")]
168168
#[inline]
169169
pub fn is_normal(self) -> bool { num::Float::is_normal(self) }
@@ -655,9 +655,9 @@ impl f64 {
655655
/// ```
656656
/// #![feature(float_extras)]
657657
///
658-
/// let x = 1.0f32;
658+
/// let x = 1.0f64;
659659
///
660-
/// let abs_diff = (x.next_after(2.0) - 1.00000011920928955078125_f32).abs();
660+
/// let abs_diff = (x.next_after(2.0) - 1.0000000000000002220446049250313_f64).abs();
661661
///
662662
/// assert!(abs_diff < 1e-10);
663663
/// ```

src/libstd/path.rs

+20
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,26 @@ impl<'a> Hash for PrefixComponent<'a> {
525525
///
526526
/// See the module documentation for an in-depth explanation of components and
527527
/// their role in the API.
528+
///
529+
/// This `enum` is created from iterating over the [`path::Components`]
530+
/// `struct`.
531+
///
532+
/// # Examples
533+
///
534+
/// ```rust
535+
/// use std::path::{Component, Path};
536+
///
537+
/// let path = Path::new("/tmp/foo/bar.txt");
538+
/// let components = path.components().collect::<Vec<_>>();
539+
/// assert_eq!(&components, &[
540+
/// Component::RootDir,
541+
/// Component::Normal("tmp".as_ref()),
542+
/// Component::Normal("foo".as_ref()),
543+
/// Component::Normal("bar.txt".as_ref()),
544+
/// ]);
545+
/// ```
546+
///
547+
/// [`path::Components`]: struct.Components.html
528548
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
529549
#[stable(feature = "rust1", since = "1.0.0")]
530550
pub enum Component<'a> {

src/libstd/primitive_docs.rs

-6
Original file line numberDiff line numberDiff line change
@@ -490,9 +490,6 @@ mod prim_tuple { }
490490
///
491491
/// *[See also the `std::f32` module](f32/index.html).*
492492
///
493-
/// However, please note that examples are shared between the `f64` and `f32`
494-
/// primitive types. So it's normal if you see usage of `f64` in there.
495-
///
496493
mod prim_f32 { }
497494

498495
#[doc(primitive = "f64")]
@@ -501,9 +498,6 @@ mod prim_f32 { }
501498
///
502499
/// *[See also the `std::f64` module](f64/index.html).*
503500
///
504-
/// However, please note that examples are shared between the `f64` and `f32`
505-
/// primitive types. So it's normal if you see usage of `f32` in there.
506-
///
507501
mod prim_f64 { }
508502

509503
#[doc(primitive = "i8")]

0 commit comments

Comments
 (0)