From d16b088d0975f4c28334806611fd1d9f7527eac3 Mon Sep 17 00:00:00 2001 From: Peter Todd Date: Mon, 16 Dec 2019 07:22:40 -0500 Subject: [PATCH] Minor: update Unsize docs for dyn syntax --- src/libcore/marker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`. +/// `Unsize`. /// /// All implementations of `Unsize` are provided automatically by the compiler. ///