Skip to content

Commit

Permalink
Rollup merge of #67349 - petertodd:2019-unsize-docs, r=Centril
Browse files Browse the repository at this point in the history
Minor: update Unsize docs for dyn syntax
  • Loading branch information
Centril committed Dec 16, 2019
2 parents a17535c + d16b088 commit 733559b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/marker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit 733559b

Please sign in to comment.