1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-04-13 15:20:53 +01:00

Update lint.md

Shorten line a bit
This commit is contained in:
Arseny Kapoulkine 2021-06-25 17:56:56 -07:00 committed by GitHub
parent 34d1561e71
commit 2cf63f3bfc
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```