From cf0c14364a15b0e05881ae3ff7bdba3265dfb864 Mon Sep 17 00:00:00 2001 From: Alexx Roche Date: Sat, 6 Jun 2020 11:44:55 +0200 Subject: [PATCH] comment typo Doesn't effect the code. --- exercises/standard_library_types/box1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/standard_library_types/box1.rs b/exercises/standard_library_types/box1.rs index 2248962e..f2654ce2 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 //