X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/67c07b22fc19f6e39b41bdd5c95b02643f51e81b..b30edaca267b5900279eb43b5a70889899bad62d:/src/part10.rs diff --git a/src/part10.rs b/src/part10.rs index 53110dc..02fb828 100644 --- a/src/part10.rs +++ b/src/part10.rs @@ -36,7 +36,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) { println!("{}{}", self.prefix, digit); /*@*/