diff --git a/experiments/2025-03-18/src/operations/connect.rs b/experiments/2025-03-18/src/operations/connect.rs index 7bb813287..fed62f20a 100644 --- a/experiments/2025-03-18/src/operations/connect.rs +++ b/experiments/2025-03-18/src/operations/connect.rs @@ -44,9 +44,9 @@ impl ConnectExt for Handle { "Can only connect faces that have the same number of vertices.", ); - let side_faces = build_connecting_faces(&bottom, &top); + let connecting_faces = build_connecting_faces(&bottom, &top); - Solid::new([bottom, top].into_iter().chain(side_faces)) + Solid::new([bottom, top].into_iter().chain(connecting_faces)) } }