1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-27 00:41:21 +02:00

Merge pull request #1544 from FWDekker/main

fix(vecs): rename outdated variable name in hint
This commit is contained in:
liv
2023-06-12 12:32:10 +02:00
committed by GitHub

View File

@ -260,8 +260,8 @@ name = "vecs2"
path = "exercises/vecs/vecs2.rs" path = "exercises/vecs/vecs2.rs"
mode = "test" mode = "test"
hint = """ hint = """
Hint 1: `i` is each element from the Vec as they are being iterated. Can you try Hint 1: `element` is each element from the Vec as they are being iterated. Can you
multiplying this? try multiplying this?
Hint 2: For the first function, there's a way to directly access the numbers stored 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 in the Vec, using the * dereference operator. You can both access and write to the