projects
/
rust-101.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
793fb7f
)
Removed <br/> in comment in part13.rs.
author
amosonn
<amosonn@gmail.com>
Tue, 29 Nov 2016 00:08:04 +0000
(
02:08
+0200)
committer
GitHub
<noreply@github.com>
Tue, 29 Nov 2016 00:08:04 +0000
(
02:08
+0200)
src/part13.rs
patch
|
blob
|
history
diff --git
a/src/part13.rs
b/src/part13.rs
index 8edcc9912db61ce1ec85b0bab10382772788c61f..054a0061b1edcac983ccf12acc7fffaede5115d6 100644
(file)
--- 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
//@ 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.
<br/>
+// 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 {
//@ 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 {