summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <ribeirodantasdm@gmail.com>2023-03-26 15:29:03 -0300
committerGitHub <noreply@github.com>2023-03-26 15:29:03 -0300
commit42cace9b13d08948be0f86f607330a9e6f0ac702 (patch)
treeb24753f6a9762f6a6711e37e3dd92da0e543603f
parent2505a5efe570c891b96e9c3fe448711ee139ba8d (diff)
parentce004b474f5c294a846e2e75e7d7e65722c28793 (diff)
Merge pull request #4633 from tif-calin/patch-1
[raku/en] fixes typo: fat comman => fat comma
-rw-r--r--raku.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/raku.html.markdown b/raku.html.markdown
index 53404f58..39bc0e51 100644
--- a/raku.html.markdown
+++ b/raku.html.markdown
@@ -122,7 +122,7 @@ say @array; # OUTPUT: «a 6 b␤»
# context, and any duplicated keys are deduplicated.
my %hash = 'a' => 1, 'b' => 2;
-# Keys get auto-quoted when the fat comman (`=>`) is used. Trailing commas are
+# Keys get auto-quoted when the fat comma (`=>`) is used. Trailing commas are
# okay.
%hash = a => 1, b => 2, ;