We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d021d7d commit d8c086bCopy full SHA for d8c086b
src/doc/book/unsized-types.md
@@ -55,6 +55,7 @@ struct Foo<T: ?Sized> {
55
}
56
```
57
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.
+This `?Sized`, read as “T may or may not be `Sized`”, which allows 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
61
+bound.
0 commit comments