From 9f71a6f054dfa0c9942e28114ea29e6527678289 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 3 Sep 2018 14:55:13 +0200 Subject: Typo in comment --- cparser/Cflow.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cparser/Cflow.ml') 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 -- cgit