From 70b8e998d8f154dfc633a3ec884a21bef64bcd1e Mon Sep 17 00:00:00 2001 From: habere-et-dispertire Date: Sun, 28 Nov 2021 21:41:47 +0000 Subject: [PATCH] [Typo]: if and else => if and unless I was looking forward to using `else` as a statement modifier, dangnabbit! :) --- essentials/loops/postfix-for/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials/loops/postfix-for/index.md b/essentials/loops/postfix-for/index.md index 7c23b5059..fedc99fa5 100644 --- a/essentials/loops/postfix-for/index.md +++ b/essentials/loops/postfix-for/index.md @@ -4,7 +4,7 @@ title: 'Postfix form of "for"' {% include menu.html %} -We have already seen other statement modifiers: [`if` and `else`](/essentials/conditional-checks/modifiers) and [`while` and `until`](/essentials/loops/modifiers). And that’s the reason for a small celebration as the design of Raku is very consistent. +We have already seen other statement modifiers: [`if` and `unless`](/essentials/conditional-checks/modifiers) and [`while` and `until`](/essentials/loops/modifiers). And that’s the reason for a small celebration as the design of Raku is very consistent. With a short loop body, the `for` loop can be written in a postfix form: