summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorapogeeoak <59737221+apogeeoak@users.noreply.github.com>2021-03-12 14:04:29 -0500
committerGitHub <noreply@github.com>2021-03-12 20:04:29 +0100
commit96c56ab08a30835e9f4d2b6b83b75a0060726fbd (patch)
treea1336cc6f7808698009aa8823ee95ddd74f25c98 /info.toml
parent04dbf03ace1bc7f23f5f98bb701cba8505954c39 (diff)
chore: changed errors3 mode from test to compile
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 b37306c..2068750 100644
--- a/info.toml
+++ b/info.toml
@@ -470,7 +470,7 @@ and give it a try!"""
[[exercises]]
name = "errors3"
path = "exercises/error_handling/errors3.rs"
-mode = "test"
+mode = "compile"
hint = """
If other functions can return a `Result`, why shouldn't `main`?"""
@@ -694,7 +694,7 @@ Step 2 & step 2.1:
Very similar to the lines above and below. You've got this!
Step 3:
An iterator goes through all elements in a collection, but what if we've run out of
-elements? What should we expect here? If you're stuck, take a look at
+elements? What should we expect here? If you're stuck, take a look at
https://doc.rust-lang.org/std/iter/trait.Iterator.html for some ideas.
"""