From: Ralf Jung Date: Wed, 7 Dec 2016 12:40:34 +0000 (+0100) Subject: Merge pull request #22 from amosonn/patch-1 X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/d20f37032a05c84366b7287095a9aada44ff9884?hp=793fb7fe9f77aa176f40e405a8b7c6814c454e46 Merge pull request #22 from amosonn/patch-1 Removed
in comment in part13.rs. --- 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 {