Skip to content

Commit

Permalink
Grammar change
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed May 20, 2016
1 parent d021d7d commit d8c086b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/doc/book/unsized-types.md
Expand Up @@ -55,6 +55,7 @@ struct Foo<T: ?Sized> {
}
```

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`”, 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
bound.

0 comments on commit d8c086b

Please sign in to comment.