summaryrefslogtreecommitdiffstats
path: root/src/doc/reference/src/special-types-and-traits.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/reference/src/special-types-and-traits.md')
-rw-r--r--src/doc/reference/src/special-types-and-traits.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference/src/special-types-and-traits.md b/src/doc/reference/src/special-types-and-traits.md
index ca53b3c9a..6355f3fb2 100644
--- a/src/doc/reference/src/special-types-and-traits.md
+++ b/src/doc/reference/src/special-types-and-traits.md
@@ -135,7 +135,7 @@ UnwindSafe>` is a valid type.
## `Sized`
The [`Sized`] trait indicates that the size of this type is known at compile-time; that is, it's not a [dynamically sized type].
-[Type parameters] are `Sized` by default, as are [associated types].
+[Type parameters] (except `Self` in traits) are `Sized` by default, as are [associated types].
`Sized` is always implemented automatically by the compiler, not by [implementation items].
These implicit `Sized` bounds may be relaxed by using the special `?Sized` bound.