Fix name of variable

This commit is contained in:
Hanno Braun 2024-10-23 18:53:44 +02:00
parent 1e8bbb9bb8
commit 6debe7279f

View File

@ -25,11 +25,11 @@ impl Layer<Topology> {
); );
for event in events { for event in events {
let event = ValidateObject { let command = ValidateObject {
object: event.object.into(), object: event.object.into(),
geometry, geometry,
}; };
validation.process_command(event); validation.process_command(command);
} }
} }
} }