Skip to content

Commit f99365d

Browse files
committed
Merge pull request chuanxshi#63 from picasso250/master
small readbility improved
2 parents 27209e8 + 17bb546 commit f99365d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

general-patterns/switch-pattern.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
* 4. Avoiding fall-throughs (when you omit the break intentionally). If you're absolutely convinced
1818
* that a fall-through is the best approach, make sure you document such cases, because they might
1919
* look like errors to the readers of your code.
20-
* 5. Ending the `switch` with a `default`: to make sure there's always a sane result even if none of the cases matched.
20+
* 5. Ending the `switch` with a `default`: to make sure there's always a sane result even if none of
21+
* the cases matched.
2122
*/
2223

2324
var inspect_me = 0,

0 commit comments

Comments
 (0)