From e1c6e264b566a59e701ef17e45d83a939591dd71 Mon Sep 17 00:00:00 2001 From: Russell McNally Date: Mon, 8 Jun 2020 10:03:03 +0100 Subject: [PATCH] Fix typo --- src/2-structs-enums-lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/2-structs-enums-lifetimes.md b/src/2-structs-enums-lifetimes.md index fce0aae..b8773cd 100644 --- a/src/2-structs-enums-lifetimes.md +++ b/src/2-structs-enums-lifetimes.md @@ -352,7 +352,7 @@ And the data will _move_ into the method when a plain self argument is used: ``` (Try that with `&self` - structs will not let go of their data without a fight!) -Note that after `v.to_tuple()` is called, then `v` has moved and is no longer +Note that after `p.to_tuple()` is called, then `p` has moved and is no longer available. To summarize: