mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update lint.md
Shorten line a bit
This commit is contained in:
parent
34d1561e71
commit
2cf63f3bfc
1 changed files with 1 additions and 1 deletions
|
@ -282,5 +282,5 @@ local t = {}
|
|||
|
||||
table.insert(t, 0, 42) -- table.insert uses index 0 but arrays are 1-based; did you mean 1 instead?
|
||||
|
||||
table.insert(t, #t + 1, 42) -- table.insert will append the value to the table; consider removing the second argument for efficiency
|
||||
table.insert(t, #t+1, 42) -- table.insert will append the value to the table; consider removing the second argument for efficiency
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue