Skip to content

Commit d021d7d

Browse files
committed
Keep line-width within 80 columns
1 parent 2fd4e60 commit d021d7d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/doc/book/unsized-types.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,6 @@ struct Foo<T: ?Sized> {
5555
}
5656
```
5757

58-
This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both constant size and unsized types.
59-
All generic type parameters implicitly have the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.
58+
This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both
59+
constant size and unsized types. All generic type parameters implicitly have
60+
the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.

0 commit comments

Comments
 (0)