We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afb11c3 commit d148b40Copy full SHA for d148b40
reference/src/layout/pointers.md
@@ -51,7 +51,7 @@ struct DynObject {
51
}
52
```
53
54
-> **note**: In the layout equivalence of `&dyn mut Trait` the field `data` is of the type `*mut u8`.
+> **note**: In the layout of `&dyn mut Trait` the field `data` is of the type `*mut u8`.
55
56
The layout of `&[T]` is the same as that of:
57
```rust
@@ -62,7 +62,7 @@ struct Slice<T> {
62
63
64
65
-> **note**: In the layout equivalence of `&mut [T]` the field `ptr` is of the type `*mut T`.
+> **note**: In the layout of `&mut [T]` the field `ptr` is of the type `*mut T`.
66
67
The layout of `&str` is the same as that of `&[u8]`, and the layout of `&mut str` is
68
the same as that of `&mut [u8]`.
0 commit comments