Skip to content

Commit ff28bf8

Browse files
committed
Minor fixes to 2014-11-10
1 parent ef119f4 commit ff28bf8

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

content/2014-11-10-this-week-in-rust.markdown

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ contributions](https://github.com/mozilla/rust/wiki/Note-guide-for-new-contribut
3030
* Minor [changes to macro interpolation][mac] have resulted the
3131
removal the `$foo:matchers` type of `macro_rules!` argument.
3232
* Socket construction is now more flexibly done through a
33-
[`ToSocketAddr`] type.
34-
* Some changes have been made to the [`BytesContainer`], which is used
33+
[ToSocketAddr] type.
34+
* Some changes have been made to the [BytesContainer], which is used
3535
to construct `Path`s, causing breakage is some cases.
3636
* The comparision types have been [updated for DST][cmp], resulting in
3737
changes to how they are invoked for references to unsized types
3838
(i.e. `&str` and `&[T]`).
3939
* As part of the recent [collections overhaul][coll-rfc], the prelude
40-
now contains a [`repeat`] function that returns an iterator that
40+
now contains a [repeat] function that returns an iterator that
4141
repeatedly yields the same value.
4242
* Some changes to make [overloaded operators][ops] behave more
4343
consistently will cause some previous code to break.
@@ -59,17 +59,17 @@ contributions](https://github.com/mozilla/rust/wiki/Note-guide-for-new-contribut
5959
[flex]: https://github.com/rust-lang/rust/pull/16156
6060
[flex-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0131-target-specification.md
6161
[err]: https://github.com/rust-lang/rust/pull/17753
62-
[err-rfc]: https://github.com/rust-lang/rfcs/blob/master/active/0070-error-chaining.md
62+
[err-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0201-error-chaining.md
6363
[tup]: https://github.com/rust-lang/rust/pull/17595
6464
[mac]: https://github.com/rust-lang/rust/pull/17830
65-
[`ToSocketAddr`]: https://github.com/rust-lang/rust/pull/18462
66-
[`BytesContainer`]: https://github.com/rust-lang/rust/pull/18463
65+
[ToSocketAddr]: https://github.com/rust-lang/rust/pull/18462
66+
[BytesContainer]: https://github.com/rust-lang/rust/pull/18463
6767
[cmp]: https://github.com/rust-lang/rust/pull/18467
6868
[coll1]: https://github.com/rust-lang/rust/pull/18519
6969
[coll2]: https://github.com/rust-lang/rust/pull/18605
7070
[coll-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0235-collections-conventions.md
7171
[coll-reddit]: https://www.reddit.com/r/rust/comments/2ljfnd/warning_some_collection_methods_have_had_their/
72-
[`repeat`]: https://github.com/rust-lang/rust/pull/18468
72+
[repeat]: https://github.com/rust-lang/rust/pull/18468
7373
[ops]: https://github.com/rust-lang/rust/pull/18486
7474
[json]: https://github.com/rust-lang/rust/pull/18544
7575
[pre]: https://github.com/rust-lang/rust/pull/18559
@@ -113,6 +113,20 @@ contributions](https://github.com/mozilla/rust/wiki/Note-guide-for-new-contribut
113113
[prefers]: https://github.com/rust-lang/rust/pull/18664
114114
[getrandom]: http://lwn.net/Articles/606141/
115115

116+
## New Contributors
117+
118+
* Cristi Burcă
119+
* juxiliary
120+
* Nathan Zadoks
121+
* qwitwa
122+
* Sean Jensen-Grey
123+
* Subhash Bhushan
124+
* thiagopnts
125+
* tshakah
126+
* Vitali Haravy
127+
* Vladimir Matveev
128+
* whataloadofwhat
129+
116130
# Approved RFC's
117131
* [Num reform](https://github.com/rust-lang/rfcs/blob/master/text/0418-struct-variants.md): Strips down `std::num` to minimally support generic primitive numbers, without supporting a full mathematical hierarchy.
118132
* [Higher-ranked trait bounds](https://github.com/rust-lang/rfcs/blob/master/text/0387-higher-ranked-trait-bounds.md): Add the ability to have trait bounds that are polymorphic over lifetimes. Necessary for unboxed closures.
@@ -166,13 +180,13 @@ contributions](https://github.com/mozilla/rust/wiki/Note-guide-for-new-contribut
166180

167181
## Blog Posts
168182

169-
* [This Week In Servo (10)](http://blog.servo.org/2014/11/04/twis-10/)
183+
* [This Week In Servo (10)](http://blog.servo.org/2014/11/04/twis-10/).
170184
* [Rewriting Rust Serialization, Part 2: Performance](http://erickt.github.io/blog/2014/11/03/performance/): A quick look at how Rust's JSON serialization performance compares to other languages and protocols.
171185
* [Improved Error Handling in Rust](http://lucumr.pocoo.org/2014/11/6/error-handling-in-rust/): Some discussion of how Rust currently and theoretically handles erroes.
172186
* [Don't Panic! The Hitchhiker's Guide to Unwinding](http://lucumr.pocoo.org/2014/10/30/dont-panic/): A nice discussion of the challenges of safe and ergonomic error handling, and how it relates to stack unwinding.
173187
* [Let's build a browser engine! Part 7: Painting 101](http://limpet.net/mbrubeck/2014/11/05/toy-layout-engine-7-painting.html): Part of a longer series on writing a browser engine in Rust. *In this article, I will add very basic painting code.*
174188
* [On pattern matching performance in Rust](http://www.cjqed.com/blog/rust-pattern-matching-performance/): A quick look at how the `match` statement can produce really efficient code.
175-
* [Rust and Go](https://medium.com/@adamhjk/rust-and-go-e18d511fbd95): A quick look at Rust and Go from the perspective of a sysadmin used to high-level programming languages.
189+
* [Rust and Go](https://medium.com/@adamhjk/rust-and-go-e18d511fbd95): A quick look at Rust and Go from the perspective of a sysadmin used to high-level programming languages. [Reddit](https://www.reddit.com/r/rust/comments/2lmhpd/rust_and_go/). [Hacker News](http://news.ycombinator.com/item?id=8574184)
176190
* [Learning Rust](http://foon.uk/rust.html): *Inspired by Artyom's Learning Racket series, I've decided to log my efforts in learning Rust. I'm going to document my learning process as I go about trying to build a roguelike in Rust. I've downloaded the compiler, skimmed the getting started guide, and written “Hello World”. So let's get started!*
177191

178192

@@ -231,17 +245,3 @@ contributions](https://github.com/mozilla/rust/wiki/Note-guide-for-new-contribut
231245

232246
* [Rust Bay Area: Cryptography and Rust, December 18th](http://www.meetup.com/Rust-Bay-Area/events/210632582/)
233247

234-
235-
# New Contributors
236-
237-
* Cristi Burcă
238-
* juxiliary
239-
* Nathan Zadoks
240-
* qwitwa
241-
* Sean Jensen-Grey
242-
* Subhash Bhushan
243-
* thiagopnts
244-
* tshakah
245-
* Vitali Haravy
246-
* Vladimir Matveev
247-
* whataloadofwhat

0 commit comments

Comments
 (0)