From b30edaca267b5900279eb43b5a70889899bad62d Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Tue, 28 Jul 2015 17:50:16 +0200 Subject: [PATCH] part10: typo --- src/part10.rs | 2 +- workspace/src/part10.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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!() -- 2.30.2