Remove unneeded semicolon so that Odin compiler won't fail with -strict-style -vet (#514)

This commit is contained in:
Yang Zhang 2025-11-25 18:38:34 -08:00 committed by GitHub
parent c13feb2428
commit 7a9a976d42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -437,7 +437,7 @@ UI_AutoId :: proc() -> proc (config: ElementDeclaration) -> bool {
return ConfigureOpenElement
}
UI :: proc{UI_WithId, UI_AutoId};
UI :: proc{UI_WithId, UI_AutoId}
Text :: proc($text: string, config: ^TextElementConfig) {
wrapped := MakeString(text)