diff options
-rw-r--r-- | src/content/chapter2_flow_control/lesson10_pattern_aliases/en.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/chapter2_flow_control/lesson10_pattern_aliases/en.html b/src/content/chapter2_flow_control/lesson10_pattern_aliases/en.html index b737eb8..37a1276 100644 --- a/src/content/chapter2_flow_control/lesson10_pattern_aliases/en.html +++ b/src/content/chapter2_flow_control/lesson10_pattern_aliases/en.html @@ -2,6 +2,6 @@ The <code>as</code> operator can be used to assign sub patterns to variables. </p> <p> - The pattern <code>[_, ..] as it</code> will match any non-empty list and - assign that list to the variable <code>it</code>. + The pattern <code>[_, ..] as first</code> will match any non-empty list and + assign that list to the variable <code>first</code>. </p> |