Skip to content

Commit d70ab2b

Browse files
committedJan 8, 2016
Auto merge of #30782 - steveklabnik:rollup, r=steveklabnik
- Successful merges: #30584, #30747, #30755, #30758, #30760, #30769 - Failed merges: #30766
2 parents 64a8ffe + 926eb83 commit d70ab2b

16 files changed

+92
-69
lines changed
 

‎src/doc/book/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Even then, Rust still allows precise control like a low-level language would.
1414

1515
[rust]: https://www.rust-lang.org
1616

17-
“The Rust Programming Language” is split into sections. This introduction
17+
“The Rust Programming Language” is split into chapters. This introduction
1818
is the first. After this:
1919

2020
* [Getting started][gs] - Set up your computer for Rust development.

‎src/doc/book/closures.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ different.
208208

209209
Rust’s implementation of closures is a bit different than other languages. They
210210
are effectively syntax sugar for traits. You’ll want to make sure to have read
211-
the [traits chapter][traits] before this one, as well as the chapter on [trait
211+
the [traits][traits] section before this one, as well as the section on [trait
212212
objects][trait-objects].
213213

214214
[traits]: traits.html

‎src/doc/book/effective-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
So you’ve learned how to write some Rust code. But there’s a difference between
44
writing *any* Rust code and writing *good* Rust code.
55

6-
This section consists of relatively independent tutorials which show you how to
6+
This chapter consists of relatively independent tutorials which show you how to
77
take your Rust to the next level. Common patterns and standard library features
88
will be introduced. Read these sections in any order of your choosing.

‎src/doc/book/error-handling.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ errors in a particular way. Generally speaking, error handling is divided into
55
two broad categories: exceptions and return values. Rust opts for return
66
values.
77

8-
In this chapter, we intend to provide a comprehensive treatment of how to deal
8+
In this section, we intend to provide a comprehensive treatment of how to deal
99
with errors in Rust. More than that, we will attempt to introduce error handling
1010
one piece at a time so that you'll come away with a solid working knowledge of
1111
how everything fits together.
1212

1313
When done naïvely, error handling in Rust can be verbose and annoying. This
14-
chapter will explore those stumbling blocks and demonstrate how to use the
14+
section will explore those stumbling blocks and demonstrate how to use the
1515
standard library to make error handling concise and ergonomic.
1616

1717
# Table of Contents
1818

19-
This chapter is very long, mostly because we start at the very beginning with
19+
This section is very long, mostly because we start at the very beginning with
2020
sum types and combinators, and try to motivate the way Rust does error handling
2121
incrementally. As such, programmers with experience in other expressive type
2222
systems may want to jump around.
@@ -636,7 +636,7 @@ Thus far, we've looked at error handling where everything was either an
636636
`Option` and a `Result`? Or what if you have a `Result<T, Error1>` and a
637637
`Result<T, Error2>`? Handling *composition of distinct error types* is the next
638638
challenge in front of us, and it will be the major theme throughout the rest of
639-
this chapter.
639+
this section.
640640

641641
## Composing `Option` and `Result`
642642

@@ -648,7 +648,7 @@ Of course, in real code, things aren't always as clean. Sometimes you have a
648648
mix of `Option` and `Result` types. Must we resort to explicit case analysis,
649649
or can we continue using combinators?
650650

651-
For now, let's revisit one of the first examples in this chapter:
651+
For now, let's revisit one of the first examples in this section:
652652

653653
```rust,should_panic
654654
use std::env;
@@ -1319,7 +1319,7 @@ and [`cause`](../std/error/trait.Error.html#method.cause), but the
13191319
limitation remains: `Box<Error>` is opaque. (N.B. This isn't entirely
13201320
true because Rust does have runtime reflection, which is useful in
13211321
some scenarios that are [beyond the scope of this
1322-
chapter](https://crates.io/crates/error).)
1322+
section](https://crates.io/crates/error).)
13231323

13241324
It's time to revisit our custom `CliError` type and tie everything together.
13251325

@@ -1486,7 +1486,7 @@ and [`fmt::Result`](../std/fmt/type.Result.html).
14861486

14871487
# Case study: A program to read population data
14881488

1489-
This chapter was long, and depending on your background, it might be
1489+
This section was long, and depending on your background, it might be
14901490
rather dense. While there is plenty of example code to go along with
14911491
the prose, most of it was specifically designed to be pedagogical. So,
14921492
we're going to do something new: a case study.
@@ -1512,7 +1512,7 @@ and [`rustc-serialize`](https://crates.io/crates/rustc-serialize) crates.
15121512

15131513
We're not going to spend a lot of time on setting up a project with
15141514
Cargo because it is already covered well in [the Cargo
1515-
chapter](../book/hello-cargo.html) and [Cargo's documentation][14].
1515+
section](../book/hello-cargo.html) and [Cargo's documentation][14].
15161516

15171517
To get started from scratch, run `cargo new --bin city-pop` and make sure your
15181518
`Cargo.toml` looks something like this:
@@ -2108,7 +2108,7 @@ handling.
21082108

21092109
# The Short Story
21102110

2111-
Since this chapter is long, it is useful to have a quick summary for error
2111+
Since this section is long, it is useful to have a quick summary for error
21122112
handling in Rust. These are some good “rules of thumb." They are emphatically
21132113
*not* commandments. There are probably good reasons to break every one of these
21142114
heuristics!

‎src/doc/book/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
% Getting Started
22

3-
This first section of the book will get us going with Rust and its tooling.
3+
This first chapter of the book will get us going with Rust and its tooling.
44
First, we’ll install Rust. Then, the classic ‘Hello World’ program. Finally,
55
we’ll talk about Cargo, Rust’s build system and package manager.
66

77
# Installing Rust
88

99
The first step to using Rust is to install it. Generally speaking, you’ll need
10-
an Internet connection to run the commands in this chapter, as we’ll be
10+
an Internet connection to run the commands in this section, as we’ll be
1111
downloading Rust from the internet.
1212

1313
We’ll be showing off a number of commands using a terminal, and those lines all

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ prompt us to enter a guess. Upon entering our guess, it will tell us if we’re
77
too low or too high. Once we guess correctly, it will congratulate us. Sounds
88
good?
99

10-
Along the way, we’ll learn a little bit about Rust. The next section, ‘Syntax
10+
Along the way, we’ll learn a little bit about Rust. The next chapter, ‘Syntax
1111
and Semantics’, will dive deeper into each part.
1212

1313
# Set up

‎src/doc/book/learn-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% Learn Rust
22

3-
Welcome! This section has a few tutorials that teach you Rust through building
3+
Welcome! This chapter has a few tutorials that teach you Rust through building
44
projects. You’ll get a high-level overview, but we’ll skim over the details.
55

66
If you’d prefer a more ‘from the ground up’-style experience, check

‎src/doc/book/ownership.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,24 @@ fn foo() {
5151
}
5252
```
5353

54-
When `v` comes into scope, a new [`Vec<T>`][vect] is created. In this case, the
55-
vector also allocates space on [the heap][heap], for the three elements. When
56-
`v` goes out of scope at the end of `foo()`, Rust will clean up everything
57-
related to the vector, even the heap-allocated memory. This happens
58-
deterministically, at the end of the scope.
54+
When `v` comes into scope, a new [vector] is created, and it allocates space on
55+
[the heap][heap] for each of its elements. When `v` goes out of scope at the
56+
end of `foo()`, Rust will clean up everything related to the vector, even the
57+
heap-allocated memory. This happens deterministically, at the end of the scope.
5958

60-
[vect]: ../std/vec/struct.Vec.html
59+
We'll cover [vectors] in detail later in this chapter; we only use them
60+
here as an example of a type that allocates space on the heap at runtime. They
61+
behave like [arrays], except their size may change by `push()`ing more
62+
elements onto them.
63+
64+
Vectors have a [generic type][generics] `Vec<T>`, so in this example `v` will have type
65+
`Vec<i32>`. We'll cover generics in detail later in this chapter.
66+
67+
[arrays]: primitive-types.html#arrays
68+
[vectors]: vectors.html
6169
[heap]: the-stack-and-the-heap.html
6270
[bindings]: variable-bindings.html
71+
[generics]: generics.html
6372

6473
# Move semantics
6574

‎src/doc/book/primitive-types.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,11 @@ variable binding. Slices have a defined length, can be mutable or immutable.
167167
## Slicing syntax
168168

169169
You can use a combo of `&` and `[]` to create a slice from various things. The
170-
`&` indicates that slices are similar to references, and the `[]`s, with a
171-
range, let you define the length of the slice:
170+
`&` indicates that slices are similar to [references], which we will cover in
171+
detail later in this section. The `[]`s, with a range, let you define the
172+
length of the slice:
173+
174+
[references]: references-and-borrowing.html
172175

173176
```rust
174177
let a = [0, 1, 2, 3, 4];
@@ -189,11 +192,13 @@ documentation][slice].
189192
# `str`
190193

191194
Rust’s `str` type is the most primitive string type. As an [unsized type][dst],
192-
it’s not very useful by itself, but becomes useful when placed behind a reference,
193-
like [`&str`][strings]. As such, we’ll just leave it at that.
195+
it’s not very useful by itself, but becomes useful when placed behind a
196+
reference, like `&str`. We'll elaborate further when we cover
197+
[Strings][strings] and [references].
194198

195199
[dst]: unsized-types.html
196200
[strings]: strings.html
201+
[references]: references-and-borrowing.html
197202

198203
You can find more documentation for `str` [in the standard library
199204
documentation][str].

‎src/doc/book/syntax-and-semantics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% Syntax and Semantics
22

3-
This section breaks Rust down into small chunks, one for each concept.
3+
This chapter breaks Rust down into small chunks, one for each concept.
44

55
If you’d like to learn Rust from the bottom up, reading this in order is a
66
great way to do that.

‎src/doc/nomicon/vec-insert-remove.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub fn insert(&mut self, index: usize, elem: T) {
2424
// ptr::copy(src, dest, len): "copy from source to dest len elems"
2525
ptr::copy(self.ptr.offset(index as isize),
2626
self.ptr.offset(index as isize + 1),
27-
len - index);
27+
self.len - index);
2828
}
2929
ptr::write(self.ptr.offset(index as isize), elem);
3030
self.len += 1;
@@ -44,7 +44,7 @@ pub fn remove(&mut self, index: usize) -> T {
4444
let result = ptr::read(self.ptr.offset(index as isize));
4545
ptr::copy(self.ptr.offset(index as isize + 1),
4646
self.ptr.offset(index as isize),
47-
len - index);
47+
self.len - index);
4848
result
4949
}
5050
}

‎src/libcore/marker.rs

+4
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,10 @@ macro_rules! impls{
295295
/// even though it does not. This allows you to inform the compiler about certain safety properties
296296
/// of your code.
297297
///
298+
/// For a more in-depth explanation of how to use `PhantomData<T>`, please see [the Nomicon].
299+
///
300+
/// [the Nomicon]: ../../nomicon/phantom-data.html
301+
///
298302
/// # A ghastly note 👻👻👻
299303
///
300304
/// Though they both have scary names, `PhantomData<T>` and 'phantom types' are related, but not

‎src/librustc_resolve/lib.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ use rustc_front::intravisit::{self, FnKind, Visitor};
7272
use rustc_front::hir;
7373
use rustc_front::hir::{Arm, BindByRef, BindByValue, BindingMode, Block};
7474
use rustc_front::hir::Crate;
75-
use rustc_front::hir::{Expr, ExprAgain, ExprBreak, ExprField};
75+
use rustc_front::hir::{Expr, ExprAgain, ExprBreak, ExprCall, ExprField};
7676
use rustc_front::hir::{ExprLoop, ExprWhile, ExprMethodCall};
7777
use rustc_front::hir::{ExprPath, ExprStruct, FnDecl};
7878
use rustc_front::hir::{ForeignItemFn, ForeignItemStatic, Generics};
@@ -433,7 +433,7 @@ fn resolve_struct_error<'b, 'a: 'b, 'tcx: 'a>(resolver: &'b Resolver<'a, 'tcx>,
433433
msg);
434434

435435
match context {
436-
UnresolvedNameContext::Other => {} // no help available
436+
UnresolvedNameContext::Other => { } // no help available
437437
UnresolvedNameContext::PathIsMod(id) => {
438438
let mut help_msg = String::new();
439439
let parent_id = resolver.ast_map.get_parent_node(id);
@@ -446,17 +446,22 @@ fn resolve_struct_error<'b, 'a: 'b, 'tcx: 'a>(resolver: &'b Resolver<'a, 'tcx>,
446446
module = &*path,
447447
ident = ident.node);
448448
}
449-
450449
ExprMethodCall(ident, _, _) => {
451450
help_msg = format!("To call a function from the \
452451
`{module}` module, use \
453452
`{module}::{ident}(..)`",
454453
module = &*path,
455454
ident = ident.node);
456455
}
457-
458-
_ => {} // no help available
456+
ExprCall(_, _) => {
457+
help_msg = format!("No function corresponds to `{module}(..)`",
458+
module = &*path);
459+
}
460+
_ => { } // no help available
459461
}
462+
} else {
463+
help_msg = format!("Module `{module}` cannot be the value of an expression",
464+
module = &*path);
460465
}
461466

462467
if !help_msg.is_empty() {

‎src/libstd/ffi/os_str.rs

+17-23
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! A type that can represent all platform-native strings, but is cheaply
12-
//! interconvertable with Rust strings.
13-
//!
14-
//! The need for this type arises from the fact that:
15-
//!
16-
//! * On Unix systems, strings are often arbitrary sequences of non-zero
17-
//! bytes, in many cases interpreted as UTF-8.
18-
//!
19-
//! * On Windows, strings are often arbitrary sequences of non-zero 16-bit
20-
//! values, interpreted as UTF-16 when it is valid to do so.
21-
//!
22-
//! * In Rust, strings are always valid UTF-8, but may contain zeros.
23-
//!
24-
//! The types in this module bridge this gap by simultaneously representing Rust
25-
//! and platform-native string values, and in particular allowing a Rust string
26-
//! to be converted into an "OS" string with no cost.
27-
//!
28-
//! **Note**: At the moment, these types are extremely bare-bones, usable only
29-
//! for conversion to/from various other string types. Eventually these types
30-
//! will offer a full-fledged string API.
31-
3211
use borrow::{Borrow, Cow, ToOwned};
3312
use ffi::CString;
3413
use fmt::{self, Debug};
@@ -42,14 +21,29 @@ use vec::Vec;
4221
use sys::os_str::{Buf, Slice};
4322
use sys_common::{AsInner, IntoInner, FromInner};
4423

45-
/// Owned, mutable OS strings.
24+
/// A type that can represent owned, mutable platform-native strings, but is
25+
/// cheaply interconvertable with Rust strings.
26+
///
27+
/// The need for this type arises from the fact that:
28+
///
29+
/// * On Unix systems, strings are often arbitrary sequences of non-zero
30+
/// bytes, in many cases interpreted as UTF-8.
31+
///
32+
/// * On Windows, strings are often arbitrary sequences of non-zero 16-bit
33+
/// values, interpreted as UTF-16 when it is valid to do so.
34+
///
35+
/// * In Rust, strings are always valid UTF-8, but may contain zeros.
36+
///
37+
/// `OsString` and `OsStr` bridge this gap by simultaneously representing Rust
38+
/// and platform-native string values, and in particular allowing a Rust string
39+
/// to be converted into an "OS" string with no cost.
4640
#[derive(Clone)]
4741
#[stable(feature = "rust1", since = "1.0.0")]
4842
pub struct OsString {
4943
inner: Buf
5044
}
5145

52-
/// Slices into OS strings.
46+
/// Slices into OS strings (see `OsString`).
5347
#[stable(feature = "rust1", since = "1.0.0")]
5448
pub struct OsStr {
5549
inner: Slice

‎src/test/compile-fail/suggest-path-instead-of-mod-dot-item.rs

+12
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,15 @@ fn h6() -> i32 {
5858
//~^ ERROR E0425
5959
//~| HELP To call a function from the `a::b` module, use `a::b::f(..)`
6060
}
61+
62+
fn h7() {
63+
a::b
64+
//~^ ERROR E0425
65+
//~| HELP Module `a::b` cannot be the value of an expression
66+
}
67+
68+
fn h8() -> i32 {
69+
a::b()
70+
//~^ ERROR E0425
71+
//~| HELP No function corresponds to `a::b(..)`
72+
}

‎src/test/run-pass/mir_trans_calls.rs

+6-12
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,11 @@ fn test5(x: &Bar, a: isize) -> isize {
5858
x.extension_method(a)
5959
}
6060

61-
// FIXME #30661: Although this function has the #[rustc_mir] attribute it never
62-
// was translated via the MIR implementation because attributes
63-
// where not passed along to trans::base::trans_fn() for generic
64-
// functions.
65-
// Uncomment this test once the thing it tests is fixed.
66-
// #[rustc_mir]
67-
// fn test6<T: Bar>(x: &T, a: isize) -> isize {
68-
// // Test calling extension method on generic callee
69-
// x.extension_method(a)
70-
// }
61+
#[rustc_mir]
62+
fn test6<T: Bar>(x: &T, a: isize) -> isize {
63+
// Test calling extension method on generic callee
64+
x.extension_method(a)
65+
}
7166

7267
trait One<T = Self> {
7368
fn one() -> T;
@@ -119,8 +114,7 @@ fn main() {
119114
assert_eq!(test3(&Foo, 42), 42);
120115
assert_eq!(test4(&Foo, 970), 970);
121116
assert_eq!(test5(&Foo, 8576), 8576);
122-
// see definition of test6() above
123-
// assert_eq!(test6(&Foo, 12367), 12367);
117+
assert_eq!(test6(&Foo, 12367), 12367);
124118
assert_eq!(test7(), 1);
125119
assert_eq!(test8(), 2);
126120

0 commit comments

Comments
 (0)
Please sign in to comment.