summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorRon Lusk <ron_lusk@comcast.com>2022-04-22 09:04:36 -0400
committerRon Lusk <ron_lusk@comcast.com>2022-04-22 09:04:36 -0400
commitb821ffdd332b7359317c88cb4e6fa9a6d290640e (patch)
treed22fcfab4ba8ca750e8cd4ecb9a8c7dcef438042 /info.toml
parent102a4b92a0c2e98ff4ba9f060850d81b4ebbe42f (diff)
docs(move_semantics5): Replace "in vogue" with "in scope" in hint
The hint for `move_semantics5` refers to "the range in which each mutable reference is in vogue". Unless this is a deliberate introduction of "vogue" (an admittedly-useful term because "scope" isn't purely lexical, as in many other languages), it may be in error: I have been unable to find the term used with reference to *Rust* references. Thus, I'm suggesting the replacement, in case it's been overlooked.
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.toml b/info.toml
index 56fa7ec..54a91bf 100644
--- a/info.toml
+++ b/info.toml
@@ -231,7 +231,7 @@ path = "exercises/move_semantics/move_semantics5.rs"
mode = "compile"
hint = """
Carefully reason about the range in which each mutable reference is in
-vogue. Does it help to update the value of referent (x) immediately after
+scope. Does it help to update the value of referent (x) immediately after
the mutable reference is taken? Read more about 'Mutable References'
in the book's section References and Borrowing':
https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html#mutable-references.