From ac2ce4d8f26f667179f9c07d5c1e16769e5bd6a2 Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Fri, 27 Jun 2025 14:02:33 -0700 Subject: [PATCH] Fix linting example. --- docs/lints.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/lints.md b/docs/lints.md index fe5cdb6..cbfa9a2 100644 --- a/docs/lints.md +++ b/docs/lints.md @@ -10,13 +10,13 @@ remove the binding, or add an `_` to the variable name. ## Example ```fnl -(local value 100) +(var value 100) (set value 10) ``` Instead, use the value, remove it, or add `_` to the variable name. ```fnl -(local value 100) +(var value 100) (set value 10) ;; use the value (print value) @@ -316,4 +316,4 @@ instead of flagging all discards, because these forms indicate that the user ## Note You find more information about Lua's multivals in [Benaiah's excellent post explaining Lua's multivals](https://benaiah.me/posts/everything-you-didnt-want-to-know-about-lua-multivals), -or by searching the word "adjust" in the [Lua Manual](https://www.lua.org/manual/5.4/manual.html#3.4.12). \ No newline at end of file +or by searching the word "adjust" in the [Lua Manual](https://www.lua.org/manual/5.4/manual.html#3.4.12).