]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/reference/src/special-types-and-traits.md
New upstream version 1.68.2+dfsg1
[rustc.git] / src / doc / reference / src / special-types-and-traits.md
index ca53b3c9a16959186327c760b7debb8d7c370718..6355f3fb29812da5e1afd1740957d9db105f64b4 100644 (file)
@@ -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.