From b3f8fe8a66558bdd7da7cdc1a73590b3874cad1c Mon Sep 17 00:00:00 2001 From: amosonn Date: Tue, 29 Nov 2016 02:08:04 +0200 Subject: [PATCH] Removed
in comment in part13.rs. --- src/part13.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/part13.rs b/src/part13.rs index 8edcc99..054a006 100644 --- a/src/part13.rs +++ b/src/part13.rs @@ -13,7 +13,7 @@ use std::sync::Arc; //@ pitfall of concurrent programming: data races. We will see how that works concretely. // Before we come to the actual code, we define a data-structure `Options` to store all the information we need -// to complete the job: Which files to work on, which pattern to look for, and how to output.
+// to complete the job: Which files to work on, which pattern to look for, and how to output. //@ Besides just printing all the matching lines, we will also offer to count them, or alternatively to sort them. #[derive(Clone,Copy)] pub enum OutputMode { -- 2.30.2