From ee9eef4b437ac65f8880ff1b79cc53fd6966d110 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 10 Dec 2022 01:59:11 +0100 Subject: [PATCH] fix comments --- parser.mly | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/parser.mly b/parser.mly index 8818c06..aae18b8 100644 --- a/parser.mly +++ b/parser.mly @@ -54,10 +54,10 @@ args_ident: /* a, ... */ | a = arg_ident ; Lcomma ; s = args_ident { a @ s } - /* ..., c) */ + /* c) */ | a = arg_ident ; Lparfin { a } - /* ..., c) */ + /* ) */ | Lparfin { [] } arg_ident: @@ -107,10 +107,10 @@ args_expr: /* a, ... */ | a = expr ; Lcomma ; s = args_expr { a :: s } - /* ..., c) */ + /* c) */ | a = expr ; Lparfin { [ a ] } - /* ..., c) */ + /* ) */ | Lparfin { [] } expr: