From Jason Turner

[stmt.break]

Diff to HTML by rtfpessoa

tmp/tmpodophr8y/{from.md → to.md} RENAMED
@@ -1,7 +1,8 @@
1
  ### The `break` statement <a id="stmt.break">[[stmt.break]]</a>
2
 
3
- The `break` statement shall occur only in an *iteration-statement* or a
4
- `switch` statement and causes termination of the smallest enclosing
5
- *iteration-statement* or `switch` statement; control passes to the
6
- statement following the terminated statement, if any.
 
7
 
 
1
  ### The `break` statement <a id="stmt.break">[[stmt.break]]</a>
2
 
3
+ A `break` statement shall be enclosed by [[stmt.pre]] an
4
+ *iteration-statement* [[stmt.iter]] or a `switch` statement
5
+ [[stmt.switch]]. The `break` statement causes termination of the
6
+ smallest such enclosing statement; control passes to the statement
7
+ following the terminated statement, if any.
8