Skip to content

Commit d9f70b3

Browse files
author
boats
committed
Fix very important mistake
1 parent 7ef0217 commit d9f70b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

text/0000-pin_and_move.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ This new auto trait is added to the `core::marker` and `std::marker` modules:
3535
pub unsafe auto trait Move { }
3636
```
3737

38-
A type implements `Move` if in its stack representation, it contains internal
39-
references to other positions within its stack representation. Nearly every
40-
type in Rust is `Move`.
38+
A type implements `Move` if in its stack representation, it does not contain
39+
internal references to other positions within its stack representation. Nearly
40+
every type in Rust is `Move`.
4141

4242
Positive impls of `Move` are added for types which contain pointers to generic
4343
types, but do not contain those types in their stack representation, e.g:

0 commit comments

Comments
 (0)