This commit is contained in:
Jeff 2024-01-10 15:07:27 -05:00
parent c75538c064
commit 9538caf330

View File

@ -162,9 +162,9 @@ impl Format for Assignment {
type_definition.format(output, indent_level);
}
output.push_str(" ");
output.push(' ');
self.operator.format(output, indent_level);
output.push_str(" ");
output.push(' ');
self.statement.format(output, 0);
}