Update name of type parameter

This commit is contained in:
Hanno Braun 2024-12-16 20:42:30 +01:00
parent efa1a32404
commit 9a362350f8

View File

@ -77,9 +77,9 @@ impl fmt::Display for OperationInSequence {
}
}
pub struct ShapeExtender<'r, T> {
pub struct ShapeExtender<'r, NewOps> {
sequence: &'r mut Vec<OperationInSequence>,
new_ops: T,
new_ops: NewOps,
}
impl<'r> ShapeExtender<'r, ()> {