X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/39b387735112972cad7bb3175393a0a09d767335..b30edaca267b5900279eb43b5a70889899bad62d:/workspace/src/part10.rs diff --git a/workspace/src/part10.rs b/workspace/src/part10.rs index 3af444f..c955394 100644 --- a/workspace/src/part10.rs +++ b/workspace/src/part10.rs @@ -24,7 +24,7 @@ struct PrintWithString { } impl Action for PrintWithString { - // Here we perform performs the actual printing of the prefix and the digit. We're not making use of our ability to + // Here we perform the actual printing of the prefix and the digit. We're not making use of our ability to // change `self` here, but we could replace the prefix if we wanted. fn do_action(&mut self, digit: u64) { unimplemented!()