621
621
----
622
622
623
623
- [ rustdoc can now use pulldown-cmark with the ` --enable-commonmark ` flag] [ 40338 ]
624
- - [ Added rust-winbg script for better debugging on Windows] [ 39983 ]
624
+ - [ Added rust-windbg script for better debugging on Windows] [ 39983 ]
625
625
- [ Rust now uses the official cross compiler for NetBSD] [ 40612 ]
626
626
- [ rustdoc now accepts ` # ` at the start of files] [ 40828 ]
627
627
- [ Fixed jemalloc support for musl] [ 41168 ]
@@ -1655,7 +1655,7 @@ Diagnostics
1655
1655
-----------
1656
1656
1657
1657
* [ Replace macro backtraces with labeled local uses] [ 35702 ]
1658
- * [ Improve error message for missplaced doc comments] [ 33922 ]
1658
+ * [ Improve error message for misplaced doc comments] [ 33922 ]
1659
1659
* [ Buffer unix and lock windows to prevent message interleaving] [ 35975 ]
1660
1660
* [ Update lifetime errors to specifically note temporaries] [ 36171 ]
1661
1661
* [ Special case a few colors for Windows] [ 36178 ]
@@ -1963,7 +1963,7 @@ Language
1963
1963
useful] ( https://github.com/rust-lang/rust/pull/34908 )
1964
1964
* [ ` macro_rules! ` ` stmt ` matchers correctly consume the entire contents when
1965
1965
inside non-braces invocations] ( https://github.com/rust-lang/rust/pull/34886 )
1966
- * [ Semicolons are properly required as statement delimeters inside
1966
+ * [ Semicolons are properly required as statement delimiters inside
1967
1967
` macro_rules! ` invocations] ( https://github.com/rust-lang/rust/pull/34660 )
1968
1968
* [ ` cfg_attr ` works on ` path ` attributes] ( https://github.com/rust-lang/rust/pull/34546 )
1969
1969
@@ -2188,7 +2188,7 @@ Compatibility Notes
2188
2188
* [ ` const ` s and ` static ` s may not have unsized types] ( https://github.com/rust-lang/rust/pull/34443 )
2189
2189
* [ The new follow-set rules that place restrictions on ` macro_rules! `
2190
2190
in order to ensure syntax forward-compatibility have been enabled] ( https://github.com/rust-lang/rust/pull/33982 )
2191
- This was an [ ammendment to RFC 550] ( https://github.com/rust-lang/rfcs/pull/1384 ) ,
2191
+ This was an [ amendment to RFC 550] ( https://github.com/rust-lang/rfcs/pull/1384 ) ,
2192
2192
and has been a warning since 1.10.
2193
2193
* [ ` cfg ` attribute process has been refactored to fix various bugs] ( https://github.com/rust-lang/rust/pull/33706 ) .
2194
2194
This causes breakage in some corner cases.
@@ -3345,7 +3345,7 @@ Libraries
3345
3345
* ` FromStr ` is [ implemented for ` SockAddrV4 ` and ` SockAddrV6 ` ] [ 1.5s ] .
3346
3346
* There are now ` From ` conversions [ between floating point
3347
3347
types] [ 1.5f ] where the conversions are lossless.
3348
- * Thera are now ` From ` conversions [ between integer types] [ 1.5i ] where
3348
+ * There are now ` From ` conversions [ between integer types] [ 1.5i ] where
3349
3349
the conversions are lossless.
3350
3350
* [ ` fs::Metadata ` implements ` Clone ` ] [ 1.5fs ] .
3351
3351
* The ` parse ` method [ accepts a leading "+" when parsing
@@ -3545,7 +3545,7 @@ Libraries
3545
3545
* [ ` IntoIterator ` is implemented for references to ` Option ` and
3546
3546
` Result ` ] [ into2 ] .
3547
3547
* [ ` HashMap ` and ` HashSet ` implement ` Extend<&T> ` where `T:
3548
- Copy`] [ ext ] as part of [ RFC 839] . This will cause type inferance
3548
+ Copy`] [ ext ] as part of [ RFC 839] . This will cause type inference
3549
3549
breakage in rare situations.
3550
3550
* [ ` BinaryHeap ` implements ` Debug ` ] [ bh2 ] .
3551
3551
* [ ` Borrow ` and ` BorrowMut ` are implemented for fixed-size
@@ -3556,7 +3556,7 @@ Libraries
3556
3556
* ` &mut T ` where ` T: std::fmt::Write ` [ also implements
3557
3557
` std::fmt::Write ` ] [ mutw ] .
3558
3558
* [ A stable regression in ` VecDeque::push_back ` and other
3559
- capicity -altering methods that caused panics for zero-sized types
3559
+ capacity -altering methods that caused panics for zero-sized types
3560
3560
was fixed] [ vd ] .
3561
3561
* [ Function pointers implement traits for up to 12 parameters] [ fp2 ] .
3562
3562
@@ -3743,7 +3743,7 @@ Libraries
3743
3743
[ better for long data] [ sh ] .
3744
3744
* [ ` AtomicPtr ` ] implements [ ` Send ` ] .
3745
3745
* The [ ` read_to_end ` ] implementations for [ ` Stdin ` ] and [ ` File ` ]
3746
- are now [ specialized to use uninitalized buffers for increased
3746
+ are now [ specialized to use uninitialized buffers for increased
3747
3747
performance] [ rte ] .
3748
3748
* Lifetime parameters of foreign functions [ are now resolved
3749
3749
properly] [ f ] .
@@ -3872,7 +3872,7 @@ Highlights
3872
3872
* This is the first release with [ experimental support for linking
3873
3873
with the MSVC linker and lib C on Windows (instead of using the GNU
3874
3874
variants via MinGW)] [ win ] . It is yet recommended only for the most
3875
- intrepid Rusticians .
3875
+ intrepid Rustaceans .
3876
3876
* Benchmark compilations are showing a 30% improvement in
3877
3877
bootstrapping over 1.1.
3878
3878
@@ -4738,7 +4738,7 @@ Version 0.11.0 (2014-07-02)
4738
4738
* Libraries
4739
4739
* The standard library is now a "facade" over a number of underlying
4740
4740
libraries. This means that development on the standard library should
4741
- be speeder due to smaller crates, as well as a clearer line between
4741
+ be speedier due to smaller crates, as well as a clearer line between
4742
4742
all dependencies.
4743
4743
* A new library, libcore, lives under the standard library's facade
4744
4744
which is Rust's "0-assumption" library, suitable for embedded and
0 commit comments