diff --git a/exercises/algorithm/algorithm8.rs b/exercises/algorithm/algorithm8.rs index d1d183b8..ca50e362 100644 --- a/exercises/algorithm/algorithm8.rs +++ b/exercises/algorithm/algorithm8.rs @@ -1,6 +1,6 @@ /* queue - This question requires you to use queues to implement the functionality of the stac + This question requires you to use queues to implement the functionality of the stack */ // I AM NOT DONE @@ -101,4 +101,4 @@ mod tests { assert_eq!(s.pop(), Err("Stack is empty")); assert_eq!(s.is_empty(), true); } -} \ No newline at end of file +}