From 1cd20c92d46bf0414e349f30d9dcd1728cb71f0b Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 11 Jun 2020 22:19:03 -0700 Subject: [PATCH] docs: Forgot a `lua` syntax --- docs/lint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lint.md b/docs/lint.md index 299e9fc5..7a4762c9 100644 --- a/docs/lint.md +++ b/docs/lint.md @@ -140,7 +140,7 @@ PlaceholderRead (11) `_` variable name is commonly used as a placeholder to discard function results. The linter follows this convention and doesn't warn about the use of `_` in various cases where a different name would cause a warning otherwise. To make sure the placeholder is only used to write values to it, this warning detects the cases where it's read instead: -``` +```lua local _ = 5 -- Placeholder value '_' is read here; consider using a named variable return _