fix formatting

This commit is contained in:
HowManySmall 2024-09-02 12:57:50 -06:00
parent d6e172bbb8
commit 7936cf9299

View file

@ -11,10 +11,10 @@
- `len` -- The length of the text that was matched.
]=]
local RegexMatch = {
start = 0;
finish = 0;
text = "";
len = 0;
start = 0,
finish = 0,
text = "",
len = 0,
}
type RegexMatch = typeof(RegexMatch)