From 2cf63f3bfc384d7bd5f3cf406604775b277ef425 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 25 Jun 2021 17:56:56 -0700 Subject: [PATCH] Update lint.md Shorten line a bit --- docs/_pages/lint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_pages/lint.md b/docs/_pages/lint.md index e2cfd8a0..ba9a6977 100644 --- a/docs/_pages/lint.md +++ b/docs/_pages/lint.md @@ -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 ```