From d021d7d7cf3aa222ac5bbca6d0c109e0d1f9a890 Mon Sep 17 00:00:00 2001 From: Postmodern Date: Thu, 19 May 2016 17:17:17 -0700 Subject: [PATCH] Keep line-width within 80 columns --- src/doc/book/unsized-types.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/doc/book/unsized-types.md b/src/doc/book/unsized-types.md index d94409a7b827..12864f2067ed 100644 --- a/src/doc/book/unsized-types.md +++ b/src/doc/book/unsized-types.md @@ -55,5 +55,6 @@ struct Foo { } ``` -This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both constant size and unsized types. -All generic type parameters implicitly have the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound. +This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both +constant size and unsized types. All generic type parameters implicitly have +the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.