Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/arrange.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn main() {
let mut probe = timely::dataflow::operators::probe::Handle::new();

// create a dataflow managing an ever-changing edge collection.
let mut graph = worker.dataflow::<Product<(),usize>,_,_>(|scope| {
let mut graph = worker.dataflow::<Product<(),usize>,_,_>(|scope| {

// create a source operator which will produce random edges and delete them.
timely::dataflow::operators::generic::source(scope, "RandomGraph", |mut capability, info| {
Expand Down
2 changes: 1 addition & 1 deletion examples/compact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn main() {
let mut probe = timely::dataflow::operators::probe::Handle::new();

// create a dataflow managing an ever-changing edge collection.
let mut handle = worker.dataflow(|scope| {
let mut handle = worker.dataflow(|scope| {
let (handle, input) = scope.new_collection();
input.distinct().probe_with(&mut probe);
handle
Expand Down
Loading