summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiannasoreil <mokou@fastmail.com>2022-04-25 11:38:05 +0200
committerGitHub <noreply@github.com>2022-04-25 11:38:05 +0200
commit604166f549165dfae8aa9afe0792f59637b6d414 (patch)
tree638aac879be94deea341e6ac7b4183cda31df4a6
parent96b301c04e8d3d721c4a809447ea1c6602f50c06 (diff)
parentb821ffdd332b7359317c88cb4e6fa9a6d290640e (diff)
Merge pull request #975 from luskwater/scope-for-vogue
docs(move_semantics5): Replace "in vogue" with "in scope" in hint
-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.