about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-12-16 17:33:16 +0100
committerGitHub <noreply@github.com>2019-12-16 17:33:16 +0100
commit733559b0c292cfa3fd6e4afffd820fa903ea320a (patch)
tree82ce6096679ca921b3eb76f24cf8480ecfc77802
parenta17535c095d63c5d175a55e00ca4c8be0d016d20 (diff)
parentd16b088d0975f4c28334806611fd1d9f7527eac3 (diff)
downloadrust-733559b0c292cfa3fd6e4afffd820fa903ea320a.tar.gz
rust-733559b0c292cfa3fd6e4afffd820fa903ea320a.zip
Rollup merge of #67349 - petertodd:2019-unsize-docs, r=Centril
Minor: update Unsize docs for dyn syntax
-rw-r--r--src/libcore/marker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 2db55508ad5..1b586c3e5fe 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -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.
 ///