From d47e7cbba080c7cf7882875f42d7211b4bdbe9d8 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 2 Aug 2017 10:52:35 +0100 Subject: [PATCH] doc/structures.tex: Fix variable reuse in keyword-args message signature. Organization: Straylight/Edgeware From: Mark Wooding I had `m' as both the message name and the total number of arguments. --- doc/structures.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/structures.tex b/doc/structures.tex index c5c2219..fd97076 100644 --- a/doc/structures.tex +++ b/doc/structures.tex @@ -589,7 +589,7 @@ or a standard message which takes keyword arguments, defined as @_n @_n? \+\\ @_{n+1} @_{n+1} @[= @_{n+1}@], $\ldots$, - @_m @_m @[= @_m@]); + @_{n'} @_{n'} @[= @_{n'}@]); \end{prog} two entry points are defined: the usual `main' entry point which accepts a variable number of arguments, and a `valist' entry point which accepts an -- [mdw]