Minor: update Unsize docs for dyn syntax

This commit is contained in:
Peter Todd 2019-12-16 07:22:40 -05:00
parent a605441e04
commit d16b088d09
No known key found for this signature in database
GPG Key ID: 2481403DA5F091FB
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ pub trait Sized {
/// Types that can be "unsized" to a dynamically-sized type.
///
/// For example, the sized array type `[i8; 2]` implements `Unsize<[i8]>` and
/// `Unsize<fmt::Debug>`.
/// `Unsize<dyn fmt::Debug>`.
///
/// All implementations of `Unsize` are provided automatically by the compiler.
///