summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2022-07-24 23:25:58 +0200
committerGitHub <noreply@github.com>2022-07-24 23:25:58 +0200
commitd21a8e63c1c5f6d1e91b6ff1e7c512dcc0be82cd (patch)
tree6e422931c95782a558851a482bc379d952d35e4c /info.toml
parent3a327096c6d6f8badc066a31f75e7f10468cf9fd (diff)
parent301bc52857554e047eabf32fec323f7a10e2b853 (diff)
Merge pull request #1102 from thatlittleboy/fix/hints-typos
Fix/hints typos
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/info.toml b/info.toml
index 1403111..f07b926 100644
--- a/info.toml
+++ b/info.toml
@@ -63,7 +63,7 @@ name = "variables5"
path = "exercises/variables/variables5.rs"
mode = "compile"
hint = """
-In variables3 we already learned how to make an immutable variable mutable
+In variables4 we already learned how to make an immutable variable mutable
using a special keyword. Unfortunately this doesn't help us much in this exercise
because we want to assign a different typed value to an existing variable. Sometimes
you may also like to reuse existing variable names because you are just converting
@@ -123,8 +123,8 @@ name = "functions4"
path = "exercises/functions/functions4.rs"
mode = "compile"
hint = """
-The error message points to line 14 and says it expects a type after the
-`->`. This is where the function's return type should be-- take a look at
+The error message points to line 17 and says it expects a type after the
+`->`. This is where the function's return type should be -- take a look at
the `is_even` function for an example!
Also: Did you figure out that, technically, u32 would be the more fitting type