@@ -78,10 +78,11 @@ let p = Point {
78
78
That is, the ` x, y ` form will assume that its values are set to a varaible
79
79
with the same name in its scope.
80
80
81
- In a similar way, it's common for new Rustaceans to try to use ` + ` to add two
82
- ` &str ` s together. This doesn't work, you can only add ` String + &str ` . As
83
- such, [ a new error message] ( https://github.com/rust-lang/rust/pull/39116 )
84
- was added to help users who make this mistake:
81
+ For another small quality of life improvement, it's common for new Rustaceans to
82
+ try to use ` + ` to add two ` &str ` s together. This doesn't work, you can only add
83
+ ` String + &str ` . As such, [ a new error
84
+ message] ( https://github.com/rust-lang/rust/pull/39116 ) was added to help users
85
+ who make this mistake:
85
86
86
87
``` rust
87
88
// code
@@ -123,9 +124,9 @@ into Cargo](https://github.com/rust-lang/cargo/pull/3664), and will be assumed i
123
124
and you can use ` build = false ` to opt out.
124
125
125
126
This release marks [ the removal] ( https://github.com/rust-lang/rust/pull/39431 )
126
- of the old ` Makefile ` based build system. We announced this new system in 1.15,
127
- which is written in Rust and primarily uses Cargo to drive the build, and now
128
- it is mature enough to always use .
127
+ of the old ` Makefile ` based build system. The new system, announced in Rust
128
+ 1.15, is written in Rust and primarily uses Cargo to drive the build. It is now
129
+ mature enough to be the only build system .
129
130
130
131
As part of that change, packages from crates.io can now be used within Rust's
131
132
build system. The first one to be added was [ mdBook] ( https://crates.io/crates/mdbook ) ,
@@ -140,7 +141,7 @@ In addition, see those links to their respective repositories; they've been
140
141
moved out of tree. Also, we've added a fourth book, still in-tree: [ The
141
142
Unstable Book] ( https://doc.rust-lang.org/stable/unstable-book/ ) . This
142
143
provides an overview of unstable features by name, contains links to their
143
- tracking issues, and may contain initial documentation of the feature .
144
+ tracking issues, and may contain initial documentation.
144
145
If there's a feature you want to see stabilized, please get involved on
145
146
its tracking issue!
146
147
0 commit comments