Skip to content

Commit b0bc669

Browse files
Merge pull request #875 from cuviper/dyn-trait
Update to `dyn Trait` syntax in a couple places
2 parents 90fb49f + ecb53d2 commit b0bc669

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/subtyping.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Variance of types is automatically determined as follows
6363
| `fn(T) -> ()` | | contravariant |
6464
| `std::cell::UnsafeCell<T>` | | invariant |
6565
| `std::marker::PhantomData<T>` | | covariant |
66-
| `Trait<T> + 'a` | covariant | invariant |
66+
| `dyn Trait<T> + 'a` | covariant | invariant |
6767

6868
The variance of other `struct`, `enum`, `union`, and tuple types is decided by
6969
looking at the variance of the types of their fields. If the parameter is used

src/type-layout.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ zero-sized type to have a size of 0 and an alignment of 1.
9595

9696
Trait objects have the same layout as the value the trait object is of.
9797

98-
> Note: This is about the raw trait object types, not pointers (`&Trait`,
99-
> `Box<Trait>`, etc.) to trait objects.
98+
> Note: This is about the raw trait object types, not pointers (`&dyn Trait`,
99+
> `Box<dyn Trait>`, etc.) to trait objects.
100100
101101
## Closure Layout
102102

0 commit comments

Comments
 (0)