From 5e5e301e866e1eeb4523b9ecae6a2a327c019a08 Mon Sep 17 00:00:00 2001
From: Quentin Carbonneaux <quentin@c9x.me>
Date: Thu, 6 Aug 2020 10:34:42 +0200
Subject: [PATCH] fix a typo in call's BNF

Thanks to Jakob for pointing this out.
---
 doc/il.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/il.txt b/doc/il.txt
index a496759..d1ed755 100644
--- a/doc/il.txt
+++ b/doc/il.txt
@@ -749,9 +749,9 @@ single-precision floating point number `%f` into `%rs`.
     CALL := [%IDENT '=' ABITY] 'call' VAL '(' (ARG), ')'
 
     ARG :=
-        ABITY %IDENT  # Regular argument
-      | 'env' VAL     # Environment argument (first)
-      | '...'         # Variadic marker (last)
+        ABITY VAL  # Regular argument
+      | 'env' VAL  # Environment argument (first)
+      | '...'      # Variadic marker (last)
 
     ABITY := BASETY | :IDENT