Skip to content

Commit d8c086b

Browse files
committed
Grammar change
1 parent d021d7d commit d8c086b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/doc/book/unsized-types.md

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

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

0 commit comments

Comments
 (0)