fix unstable issue ref for Unsize

It was pointing at the issue for `placement_new_protocol`.
This commit is contained in:
Alex Burka 2015-08-26 19:07:44 -04:00
parent 1c3b19d69d
commit 2367cafe9d

View File

@ -45,7 +45,7 @@ pub trait Sized {
}
/// Types that can be "unsized" to a dynamically sized type.
#[unstable(feature = "unsize", issue = "27779")]
#[unstable(feature = "unsize", issue = "27732")]
#[lang="unsize"]
pub trait Unsize<T: ?Sized> {
// Empty.