From 063c440c78d8db8ec349640d8404901f5301dae6 Mon Sep 17 00:00:00 2001
From: circumspect <40770208+circumspect@users.noreply.github.com>
Date: Fri, 12 Mar 2021 14:26:57 +0000
Subject: [PATCH] chore: fix typo

Co-authored-by: Chenkail <40770208+Chenkail@users.noreply.github.com>
---
 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