Skip to content

Commit 9732f63

Browse files
authored
Merge pull request rust-lang#148 from matthewjasper/dst-fix
Correctly state that type parameters are `Sized` by default.
2 parents 8a86790 + ec9b52b commit 9732f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dynamically-sized-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ types">DSTs</abbr>. Such types can only be used in certain cases:
1212
* Pointers to trait objects also store a pointer to a vtable.
1313
* <abbr title="dynamically sized types">DSTs</abbr> can be provided as
1414
type arguments when a bound of `?Sized`. By default any type parameter
15-
has a `?Sized` bound.
15+
has a `Sized` bound.
1616
* Traits may be implemented for <abbr title="dynamically sized
1717
types">DSTs</abbr>. Unlike type parameters`Self: ?Sized` by default in trait
1818
definitions.

0 commit comments

Comments
 (0)