From 1b59406aec39a7cfc70cf9ef63d1718126631a1c Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 6 Jan 2015 18:18:56 -0800 Subject: [PATCH 1/2] Use a better reference for unboxed closures --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 6c81a3f211ecf..588313131e585 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -144,7 +144,7 @@ Version 1.0.0-alpha (January 2015) * Work has begun on supporting AArch64. [Cargo]: https://crates.io -[unboxed]: https://github.com/rust-lang/rfcs/blob/master/text/0114-closures.md +[unboxed]: http://smallcultfollowing.com/babysteps/blog/2014/11/26/purging-proc/ [enum]: https://github.com/rust-lang/rfcs/blob/master/text/0390-enum-namespacing.md [flex]: https://github.com/rust-lang/rfcs/blob/master/text/0131-target-specification.md [err]: https://github.com/rust-lang/rfcs/blob/master/text/0201-error-chaining.md From 9d8de1f42c1fa8cf16bcfa61e9cea0783157d642 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 6 Jan 2015 22:16:34 -0800 Subject: [PATCH 2/2] Sync -> Send --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index ec291e4a242db..f7c385cbe7c1f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -61,7 +61,7 @@ Version 1.0.0-alpha (January 2015) even though the internals do not (e.g. structs containing unsafe pointers like `Arc`). These changes are intended to prevent some footguns and are collectively known as [opt-in built-in - traits][oibit] (though `Sync` and `Share` will soon become pure + traits][oibit] (though `Sync` and `Send` will soon become pure library types unknown to the compiler). * Operator traits now take their operands [by value][ops], and comparison traits can use multidispatch to compare one type