Rollup merge of #52905 - pravic:unsize-typo, r=alexcrichton

Fix a typo in unsize.rs

RfC -> RFC
This commit is contained in:
Pietro Albini 2018-08-01 10:13:05 +02:00 committed by GitHub
commit ac2b3c3712
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ use marker::Unsize;
/// Trait that indicates that this is a pointer or a wrapper for one,
/// where unsizing can be performed on the pointee.
///
/// See the [DST coercion RfC][dst-coerce] and [the nomicon entry on coercion][nomicon-coerce]
/// See the [DST coercion RFC][dst-coerce] and [the nomicon entry on coercion][nomicon-coerce]
/// for more details.
///
/// For builtin pointer types, pointers to `T` will coerce to pointers to `U` if `T: Unsize<U>`