Update name of variable

This commit is contained in:
Hanno Braun 2025-01-10 19:46:10 +01:00
parent d781b878cc
commit 5059eff026

View File

@ -107,17 +107,17 @@ impl<'r, NewOps, T> ShapeExtender<'r, NewOps, T> {
NewOps: CombinRight<Handle<T>>,
T: Operation + 'static,
{
let vertex = self.store.insert(op.into());
let op = self.store.insert(op.into());
self.sequence.push(OperationInSequence {
operation: vertex.to_any(),
operation: op.to_any(),
previous: self.sequence.last().map(|op| AnyOp::new(op.clone())),
});
ShapeExtender {
store: self.store,
sequence: self.sequence,
new_ops: self.new_ops.push_right(vertex),
new_ops: self.new_ops.push_right(op),
}
}