From 1029290f62a044b9f1a443d377f8fb8208a1ed67 Mon Sep 17 00:00:00 2001
From: apogeeoak <59737221+apogeeoak@users.noreply.github.com>
Date: Tue, 9 Feb 2021 18:01:03 -0500
Subject: [PATCH] chore: Changed errors3 mode from test to compile.

---
 info.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/info.toml b/info.toml
index f0fed93..bfd6a63 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.
 """