mirror of
https://github.com/lune-org/lune.git
synced 2025-04-13 15:00:53 +01:00
fix formatting
This commit is contained in:
parent
d6e172bbb8
commit
7936cf9299
1 changed files with 5 additions and 5 deletions
|
@ -11,10 +11,10 @@
|
||||||
- `len` -- The length of the text that was matched.
|
- `len` -- The length of the text that was matched.
|
||||||
]=]
|
]=]
|
||||||
local RegexMatch = {
|
local RegexMatch = {
|
||||||
start = 0;
|
start = 0,
|
||||||
finish = 0;
|
finish = 0,
|
||||||
text = "";
|
text = "",
|
||||||
len = 0;
|
len = 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
type RegexMatch = typeof(RegexMatch)
|
type RegexMatch = typeof(RegexMatch)
|
||||||
|
@ -153,7 +153,7 @@ end
|
||||||
@param text -- The text to split
|
@param text -- The text to split
|
||||||
@return { string } -- The split text
|
@return { string } -- The split text
|
||||||
]=]
|
]=]
|
||||||
function Regex.split(self: Regex, text: string): {string}
|
function Regex.split(self: Regex, text: string): { string }
|
||||||
return nil :: any
|
return nil :: any
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue