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.