From 158694aced820e48d12e82b483ab459bda2600a2 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 4 Apr 2025 12:22:42 +0200 Subject: [PATCH] Update name of variable --- experiments/2025-03-18/src/operations/connect.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) } }