File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1092,7 +1092,7 @@ A `switch` structure looks like the following. Note the placement of
1092
1092
parentheses, spaces, and braces. The ` case ` statement MUST be indented once
1093
1093
from ` switch ` , and the ` break ` keyword (or other terminating keywords) MUST be
1094
1094
indented at the same level as the ` case ` body. There MUST be a comment such as
1095
- ` // No break ` when fall-through is intentional in a non-empty ` case ` body.
1095
+ ` // no break ` when fall-through is intentional in a non-empty ` case ` body.
1096
1096
1097
1097
``` php
1098
1098
<?php
@@ -1103,7 +1103,7 @@ switch ($expr) {
1103
1103
break;
1104
1104
case 1:
1105
1105
echo 'Second case, which falls through';
1106
- // No break
1106
+ // no break
1107
1107
case 2:
1108
1108
case 3:
1109
1109
case 4:
You can’t perform that action at this time.
0 commit comments