Skip to content

Commit 859bc52

Browse files
authored
Merge pull request #281 from odsantos/update-en-switch
Update '"switch" statement' English article
2 parents f65071c + f04d6b0 commit 859bc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/14-switch/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ switch (a) {
139139
140140
Now both `3` and `5` show the same message.
141141
142-
The ability to "group" cases is a side-effect of how `switch/case` works without `break`. Here the execution of `case 3` starts from the line `(*)` and goes through `case 5`, because there's no `break`.
142+
The ability to "group" cases is a side effect of how `switch/case` works without `break`. Here the execution of `case 3` starts from the line `(*)` and goes through `case 5`, because there's no `break`.
143143
144144
## Type matters
145145

0 commit comments

Comments
 (0)