Skip to content

Commit

Permalink
fix: string.find definition (#849)
Browse files Browse the repository at this point in the history
  • Loading branch information
FourierTransformer authored Nov 5, 2024
1 parent 711b34c commit 418cb70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ do
char: function(integer...): string
dump: function(function(any...): (any), ? boolean): string
find: function(string, string, ? integer, ? boolean): integer, integer, string
find: function(string, string, ? integer, ? boolean): integer, integer, string...
format: function(string, any...): string
gmatch: function(string, string, ? integer): (function(): string...)
Expand Down
2 changes: 1 addition & 1 deletion tl.tl
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ do
char: function(integer...): string
dump: function(function(any...): (any), ? boolean): string
find: function(string, string, ? integer, ? boolean): integer, integer, string
find: function(string, string, ? integer, ? boolean): integer, integer, string...
format: function(string, any...): string
gmatch: function(string, string, ? integer): (function(): string...)
Expand Down

0 comments on commit 418cb70

Please sign in to comment.