summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorFlorine W. Dekker <florine@fwdekker.com>2023-06-07 16:58:02 +0200
committerFlorine W. Dekker <florine@fwdekker.com>2023-06-07 16:58:02 +0200
commit479574e88eef4a4299b005388bec74f07a9c57d5 (patch)
tree84d0ffe27713a0300264bbaa3cc775be334da02c /info.toml
parent30291a3c253f08a4191cfd544ba36867612ebb7a (diff)
fix(vecs): rename outdated variable name in hint
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/info.toml b/info.toml
index 2add5f0..8706ee5 100644
--- a/info.toml
+++ b/info.toml
@@ -260,8 +260,8 @@ name = "vecs2"
path = "exercises/vecs/vecs2.rs"
mode = "test"
hint = """
-Hint 1: `i` is each element from the Vec as they are being iterated. Can you try
-multiplying this?
+Hint 1: `element` is each element from the Vec as they are being iterated. Can you
+try multiplying this?
Hint 2: For the first function, there's a way to directly access the numbers stored
in the Vec, using the * dereference operator. You can both access and write to the