@@ -19,7 +19,7 @@ Language
19
19
20
20
* Several [ restrictions have been added to trait coherence] [ coh ] in
21
21
order to make it easier for upstream authors to change traits
22
- without breaking downsteam code.
22
+ without breaking downstream code.
23
23
* Digits of binary and octal literals are [ lexed more eagerly] [ lex ] to
24
24
improve error messages and macro behavior. For example, ` 0b1234 ` is
25
25
now lexed as ` 0b1234 ` instead of two tokens, ` 0b1 ` and ` 234 ` .
@@ -169,10 +169,10 @@ Version 1.0.0-alpha.2 (February 2015)
169
169
* Highlights
170
170
171
171
* The various I/O modules were [ overhauled] [ io-rfc ] to reduce
172
- unncessary abstractions and provide better interoperation with
172
+ unnecessary abstractions and provide better interoperation with
173
173
the underlying platform. The old ` io ` module remains temporarily
174
174
at ` std::old_io ` .
175
- * The standard library now [ partipates in feature gating] [ feat ] ,
175
+ * The standard library now [ participates in feature gating] [ feat ] ,
176
176
so use of unstable libraries now requires a ` #![feature(...)] `
177
177
attribute. The impact of this change is [ described on the
178
178
forum] [ feat-forum ] . [ RFC] [ feat-rfc ] .
@@ -385,7 +385,7 @@ Version 1.0.0-alpha (January 2015)
385
385
syscall when available.
386
386
* The 'serialize' crate has been renamed 'rustc-serialize' and
387
387
moved out of the distribution to Cargo. Although it is widely
388
- used now, it is expected to be superceded in the near future.
388
+ used now, it is expected to be superseded in the near future.
389
389
* The ` Show ` formatter, typically implemented with
390
390
` #[derive(Show)] ` is [ now requested with the ` {:?} `
391
391
specifier] [ show ] and is intended for use by all types, for uses
0 commit comments