File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5786,7 +5786,7 @@ include::grammar.adoc[tag=forInitStatement]
5786
5786
include::grammar.adoc[tag=forUpdateStatement]
5787
5787
----
5788
5788
5789
- The basic 3-clause `for` statement is similar to a C for statement. The init statements
5789
+ The basic 3-clause `for` statement is similar to a C ` for` statement. The init statements
5790
5790
will be executed prior to executing the loop. The condition will be evaluated before
5791
5791
each iteration, to determine if the loop should exit. If the condition is false, the loop
5792
5792
will exit without executing any statements from the loop body or update.
@@ -5805,9 +5805,8 @@ A `continue;` statement may be executed in a loop body to skip the rest of the c
5805
5805
loop body, executing the update statements and then evaluating the condition to
5806
5806
either execute the loop body again, or terminate the loop.
5807
5807
5808
- The scope of any declaration in a for statement is limited to the for statement and its body.
5808
+ The scope of any declaration in a ` for` statement is limited to the ` for` statement and its body.
5809
5809
5810
- >>>>>>> upstream/main:p4-16/spec/P4-16-spec.mdk
5811
5810
[#sec-packet-parsing]
5812
5811
== Packet parsing
5813
5812
You can’t perform that action at this time.
0 commit comments