1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-05 16:10:31 +02:00

s/twice/again/

This commit is contained in:
Fabian Bornhofen 2023-01-09 13:37:06 +01:00
parent e213f9dbd3
commit 45bc1233d2

View File

@ -40,7 +40,7 @@ Copying and cloning are not the same thing:
In the above example, try the following:
* Try printing `p1` twice after the move. What do you expect to happen?
* Try printing `p1` again after the move. What do you expect to happen?
* What happens when you add a `String` field to `struct Point`?
* Does it work when you remove `Copy` from the `derive` attribute?
* After removing `Copy`, can you still print `p1` after the move?