Skip to content

Commit 1ff5f02

Browse files
committed
Fix copilot hallucination
Signed-off-by: Moritz Hoffmann <[email protected]>
1 parent a9e92d8 commit 1ff5f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

differential-dataflow/examples/iterate_container.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl<C: ResultsIn<TS>, TS> ResultsIn<TS> for ContainerWrapper<C> {
3636
fn wrap<G: Scope, C: timely::Container>(stream: &StreamCore<G, C>) -> StreamCore<G, ContainerWrapper<C>> {
3737
let mut builder = OperatorBuilder::new("Wrap".to_string(), stream.scope());
3838
let (mut output, stream_out) = builder.new_output();
39-
let mut input = builder.new_input_connection(stream, Pipeline, vec![]);
39+
let mut input = builder.new_input(stream, Pipeline);
4040
builder.build(move |_capability| move |_frontier| {
4141
let mut output = output.activate();
4242
input.for_each(|time, data| {

0 commit comments

Comments
 (0)