From c6620a414aa076a1a80470038e18f180f9cc4a2a Mon Sep 17 00:00:00 2001 From: mdinger Date: Sat, 20 Jun 2015 15:23:38 -0400 Subject: [PATCH] Add a summary of the changes to rustbyexample over the past few months --- drafts/2015-06-22-this-week-in-rust.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/drafts/2015-06-22-this-week-in-rust.md b/drafts/2015-06-22-this-week-in-rust.md index a51e83220..317d943e2 100644 --- a/drafts/2015-06-22-this-week-in-rust.md +++ b/drafts/2015-06-22-this-week-in-rust.md @@ -21,6 +21,21 @@ This week's edition was edited by: WHO?? # Project Updates +* A summary of the major changes to [Rust by example](http://rustbyexample.com/) +in the past few months include: + - February 15, 2015: The [flow control section](http://rustbyexample.com/flow_control.html) +was [created](https://github.com/rust-lang/rust-by-example/pull/421) to house +all flow control operations together. + - March 21, 2015: The [formatting section](http://rustbyexample.com/hello/print.html) +was [revised](https://github.com/rust-lang/rust-by-example/pull/496) so new +users are immediately confronted with the distinction of `Debug` and `Display` +and how to deal with them. + - May 2, 2015: The table of contents was [reorganized](https://github.com/rust-lang/rust-by-example/pull/561) +so examples are sorted consistently by categories. + - May 23, 2015: The [generics section](http://rustbyexample.com/generics.html) was +majorly [expanded](https://github.com/rust-lang/rust-by-example/pull/572). + - June 15, 2015: The [closures section](http://rustbyexample.com/fn/closures.html) was +completely rewritten and [expanded](https://github.com/rust-lang/rust-by-example/pull/594). # What's cooking on master?