diff options
author | eli <59039+dropwhile@users.noreply.github.com> | 2024-03-10 12:33:26 -0700 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-03-12 12:01:44 +0000 |
commit | dc4f780be4adca88685e1cd2c5ad32834f48ce56 (patch) | |
tree | 60d2c25c7cf072f9ca4a1fb8c70e4415b67edc20 /src | |
parent | a856da8cf685acca4583c21dd9647f570d855b1d (diff) | |
download | tour-dc4f780be4adca88685e1cd2c5ad32834f48ce56.tar.gz tour-dc4f780be4adca88685e1cd2c5ad32834f48ce56.zip |
Update discard pattern
fix awkward wording
Diffstat (limited to 'src')
-rw-r--r-- | src/content/chapter0_basics/lesson11_discard_patterns/en.html | 2 |
1 files changed, 1 insertions, 1 deletions
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. </p> <p> - 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. </p> <p> |