diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-08-01 10:13:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-01 10:13:05 +0200 |
| commit | ac2b3c37123ef4407ccf50888e1cc21dbbac7e57 (patch) | |
| tree | fe88a15985f1630dc6b8c9a133dec819001a7136 /src/libcore | |
| parent | 2d29c44a5e01b551f810726a1353a68890018be7 (diff) | |
| parent | 830ac8c87fb76c44c8ed42d4111d0b05b7f6caad (diff) | |
Rollup merge of #52905 - pravic:unsize-typo, r=alexcrichton
Fix a typo in unsize.rs RfC -> RFC
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/ops/unsize.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/unsize.rs b/src/libcore/ops/unsize.rs index cd896859b16..da72f374842 100644 --- a/src/libcore/ops/unsize.rs +++ b/src/libcore/ops/unsize.rs @@ -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>` |
