We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fd4e60 commit d021d7dCopy full SHA for d021d7d
src/doc/book/unsized-types.md
@@ -55,5 +55,6 @@ struct Foo<T: ?Sized> {
55
}
56
```
57
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.
+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
60
+the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.
0 commit comments