From b955fffcef278c70e8dd8f36d351761bf13f86cf Mon Sep 17 00:00:00 2001
From: Chenkail <40770208+Chenkail@users.noreply.github.com>
Date: Mon, 15 Feb 2021 04:37:16 +0000
Subject: [PATCH] Fix typo

---
 src/exercise.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/exercise.rs b/src/exercise.rs
index 7afa230..18e8d5a 100644
--- a/src/exercise.rs
+++ b/src/exercise.rs
@@ -235,7 +235,7 @@ path = "{}.rs""#,
 
     // Check that the exercise looks to be solved using self.state()
     // This is not the best way to check since
-    // the user can just remove the "I AM NOT DONE" string fromm the file
+    // the user can just remove the "I AM NOT DONE" string from the file
     // without actually having solved anything.
     // The only other way to truly check this would to compile and run
     // the exercise; which would be both costly and counterintuitive