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

This commit is contained in:
YangMann 2025-09-19 03:38:38 -07:00
parent 37675089e3
commit 6e379a7c41

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)