summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcircumspect <40770208+circumspect@users.noreply.github.com>2021-03-12 14:26:57 +0000
committerGitHub <noreply@github.com>2021-03-12 15:26:57 +0100
commit833df0b8b3bcc03df50f76f3b9ed15c5ffc60870 (patch)
tree1ea59d1477650ff0f6d0dceb6a9d7bdc74859e1f /src
parent6742860ea5fa32c987c8dffa7282fa5ed308b7a4 (diff)
chore: fix typo
Co-authored-by: Chenkail <40770208+Chenkail@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/exercise.rs2
1 files changed, 1 insertions, 1 deletions
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