Skip to content

Commit d21a8e6

Browse files
authored
Merge pull request #1102 from thatlittleboy/fix/hints-typos
Fix/hints typos
2 parents 3a32709 + 301bc52 commit d21a8e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

info.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ name = "variables5"
6363
path = "exercises/variables/variables5.rs"
6464
mode = "compile"
6565
hint = """
66-
In variables3 we already learned how to make an immutable variable mutable
66+
In variables4 we already learned how to make an immutable variable mutable
6767
using a special keyword. Unfortunately this doesn't help us much in this exercise
6868
because we want to assign a different typed value to an existing variable. Sometimes
6969
you may also like to reuse existing variable names because you are just converting
@@ -123,8 +123,8 @@ name = "functions4"
123123
path = "exercises/functions/functions4.rs"
124124
mode = "compile"
125125
hint = """
126-
The error message points to line 14 and says it expects a type after the
127-
`->`. This is where the function's return type should be-- take a look at
126+
The error message points to line 17 and says it expects a type after the
127+
`->`. This is where the function's return type should be -- take a look at
128128
the `is_even` function for an example!
129129
130130
Also: Did you figure out that, technically, u32 would be the more fitting type

0 commit comments

Comments
 (0)