summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorAlexx Roche <github@alexx.net>2020-06-06 12:07:39 +0200
committerGitHub <noreply@github.com>2020-06-06 12:07:39 +0200
commitbb2ca251106b27a7272d9a30872904dd1376654c (patch)
tree1fe2fb29613df750afd8b83253640f8227e02c9b /exercises
parent0dd1c6ca6b389789e0972aa955fe17aa15c95f29 (diff)
fix(box1): fix comment typo (#426)
Doesn't effect the code.
Diffstat (limited to 'exercises')
-rw-r--r--exercises/standard_library_types/box1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/standard_library_types/box1.rs b/exercises/standard_library_types/box1.rs
index 2248962..f2654ce 100644
--- a/exercises/standard_library_types/box1.rs
+++ b/exercises/standard_library_types/box1.rs
@@ -10,7 +10,7 @@
// elements: the value of the current item and the next item. The last item is a value called `Nil`.
//
// Step 1: use a `Box` in the enum definition to make the code compile
-// Step 2: create both empty and non-empty cons lists of by replacing `unimplemented!()`
+// Step 2: create both empty and non-empty cons lists by replacing `unimplemented!()`
//
// Note: the tests should not be changed
//