aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cparser/Cflow.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Cflow.ml b/cparser/Cflow.ml
index c7236ce8..cc257189 100644
--- a/cparser/Cflow.ml
+++ b/cparser/Cflow.ml
@@ -135,7 +135,7 @@ let catch_continue (s: flow) : flow = fun i ->
let o = s i in
{ o with onormal = o.onormal || o.ocontinue; ocontinue = false}
-(* Convert "continue" into "fallthrough". Typically applied to a loop. *)
+(* Convert "break" into "fallthrough". Typically applied to a loop. *)
let catch_break (s: flow) : flow = fun i ->
let o = s i in