From df8d6e3d3acc0966c21912316318a37ba34ccb3b Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 10 Dec 2022 17:36:34 +0100 Subject: [PATCH] fix comment --- parser.mly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.mly b/parser.mly index 1a91df0..af83bcc 100644 --- a/parser.mly +++ b/parser.mly @@ -142,7 +142,7 @@ expr: Call { func = "%div" ; args = [ a ; b ] ; pos = $startpos($2) } } - /* function() */ + /* function(a */ | f = Lvar ; Lpardeb ; a = args_expr { Call { func = f ; args = a ; pos = $startpos(a) } }