Skip to content

Commit 2b517dd

Browse files
committed
Correct mdbook
1 parent 07eb7fd commit 2b517dd

4 files changed

Lines changed: 2 additions & 5 deletions

File tree

mdbook/src/chapter_2/chapter_2_4.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ As an example, if we were to inspect
1212
# use timely::dataflow::Scope;
1313
# use differential_dataflow::VecCollection;
1414
# use differential_dataflow::lattice::Lattice;
15-
# use differential_dataflow::operators::Reduce;
1615
# fn example<G: Scope>(manages: &VecCollection<G, (u64, u64)>)
1716
# where G::Timestamp: Lattice
1817
# {

mdbook/src/chapter_2/chapter_2_6.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ For example, to produce for each manager their managee with the lowest identifie
1010
# use timely::dataflow::Scope;
1111
# use differential_dataflow::VecCollection;
1212
# use differential_dataflow::lattice::Lattice;
13-
# use differential_dataflow::operators::Reduce;
1413
# fn example<G: Scope>(manages: &VecCollection<G, (u64, u64), i64>)
1514
# where G::Timestamp: Lattice
1615
# {

mdbook/src/chapter_2/chapter_2_7.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ As an example, we can take our `manages` relation and determine for all employee
99
# extern crate differential_dataflow;
1010
# use timely::dataflow::Scope;
1111
# use differential_dataflow::VecCollection;
12-
# use differential_dataflow::operators::{Join, Iterate, Threshold};
12+
# use differential_dataflow::operators::{Join, Iterate};
1313
# use differential_dataflow::lattice::Lattice;
1414
# fn example<G: Scope>(manages: &VecCollection<G, (u64, u64)>)
1515
# where G::Timestamp: Lattice
@@ -45,7 +45,7 @@ In the example above, we could rewrite
4545
# extern crate differential_dataflow;
4646
# use timely::dataflow::Scope;
4747
# use differential_dataflow::VecCollection;
48-
# use differential_dataflow::operators::{Join, Threshold};
48+
# use differential_dataflow::operators::Join;
4949
# use differential_dataflow::operators::{Iterate, iterate::VecVariable};
5050
# use differential_dataflow::lattice::Lattice;
5151
# fn example<G: Scope>(manages: &VecCollection<G, (u64, u64)>)

mdbook/src/chapter_5/chapter_5_4.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ extern crate timely;
2323
extern crate differential_dataflow;
2424

2525
use differential_dataflow::operators::Join;
26-
use differential_dataflow::operators::Threshold;
2726
use differential_dataflow::operators::Iterate;
2827
use differential_dataflow::operators::arrange::ArrangeByKey;
2928

0 commit comments

Comments
 (0)