Rollup merge of #42195 - SamWhited:fix_broken_link, r=steveklabnik

fix broken link to nomicon in Unsize docs

Add a missing link that is currently broken in the docs (see the last sentence of https://doc.rust-lang.org/std/marker/trait.Unsize.html)
This commit is contained in:
Mark Simulacrum 2017-05-24 19:50:09 -06:00 committed by GitHub
commit a78a0dbe5f

View file

@ -120,7 +120,7 @@ pub trait Sized {
/// [coerceunsized]: ../ops/trait.CoerceUnsized.html
/// [rc]: ../../std/rc/struct.Rc.html
/// [RFC982]: https://github.com/rust-lang/rfcs/blob/master/text/0982-dst-coercion.md
/// [nomicon-coerce]: ../../nomicon/coercions.html
#[unstable(feature = "unsize", issue = "27732")]
#[lang="unsize"]
pub trait Unsize<T: ?Sized> {