Skip to content

Commit 859b866

Browse files
authored
Merge pull request #113 from vdelau/lowercase_no_break
Undo capitalization of `// no break` to prevent tooling issues
2 parents 5229526 + 9e70dce commit 859b866

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ A `switch` structure looks like the following. Note the placement of
10921092
parentheses, spaces, and braces. The `case` statement MUST be indented once
10931093
from `switch`, and the `break` keyword (or other terminating keywords) MUST be
10941094
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.
10961096

10971097
```php
10981098
<?php
@@ -1103,7 +1103,7 @@ switch ($expr) {
11031103
break;
11041104
case 1:
11051105
echo 'Second case, which falls through';
1106-
// No break
1106+
// no break
11071107
case 2:
11081108
case 3:
11091109
case 4:

0 commit comments

Comments
 (0)