From Jason Turner

[stmt.break]

Diff to HTML by rtfpessoa

tmp/tmppnk0jp3_/{from.md → to.md} RENAMED
@@ -1,8 +1,9 @@
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
 
 
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]], an *expansion-statement*
5
+ [[stmt.expand]], or a `switch` statement [[stmt.switch]]. The `break`
6
+ statement causes termination of the innermost such enclosing statement;
7
+ control passes to the statement following the terminated statement, if
8
+ any.
9