Make Formatter Happy

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-02 08:26:37 -05:00
parent 6dba17c97a
commit 59d56e7b73
6 changed files with 21 additions and 11 deletions
+1 -1
View File
@@ -229,7 +229,7 @@ public struct Parser: P4Type {
public func findStartState() -> ParserState? {
for state in states.states {
if state.state == Identifier(name:"start") {
if state.state == Identifier(name: "start") {
return state
}
}