From 7f0a6c5d6bb464764337c30946843bd819d14fd1 Mon Sep 17 00:00:00 2001 From: eli <59039+dropwhile@users.noreply.github.com> Date: Sun, 10 Mar 2024 12:33:26 -0700 Subject: [PATCH] Update discard pattern fix awkward wording --- src/content/chapter0_basics/lesson11_discard_patterns/en.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/chapter0_basics/lesson11_discard_patterns/en.html b/src/content/chapter0_basics/lesson11_discard_patterns/en.html index 46dc79b..91cfb42 100644 --- a/src/content/chapter0_basics/lesson11_discard_patterns/en.html +++ b/src/content/chapter0_basics/lesson11_discard_patterns/en.html @@ -2,7 +2,7 @@ If a variable is assigned but not used then Gleam will emit a warning.
- If a variable is intended not to be use then the name can be prefixed with an + If a variable is intended to not be used, then the name can be prefixed with an underscore, silencing the warning.