diff --git a/experiments/2024-12-09/src/topology/sweep.rs b/experiments/2024-12-09/src/topology/sweep.rs index a42d41cb3..bf73759f4 100644 --- a/experiments/2024-12-09/src/topology/sweep.rs +++ b/experiments/2024-12-09/src/topology/sweep.rs @@ -28,9 +28,9 @@ pub trait SweepExt { impl SweepExt for Handle { fn sweep(self, path: impl Into>) -> Sweep { let bottom = self; - let top = bottom.flip().translate(path); + let top = Handle::new(bottom.flip().translate(path)); - let output = top.output.connect(bottom); + let output = top.connect(bottom); Sweep { output: Handle::new(output), }