From: Ralf Jung Date: Tue, 28 Jul 2015 15:50:16 +0000 (+0200) Subject: part10: typo X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/b30edaca267b5900279eb43b5a70889899bad62d part10: typo --- 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); /*@*/ 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!()