diff options
author | Fulbert <fulbert@bluewin.ch> | 2022-09-13 18:28:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-01 16:00:05 +0200 |
commit | b16dbb14bc20d41be04dc266595e901d6f70ac9f (patch) | |
tree | b76a79e788864c5c428985e1ea1f8b3af1686e03 /doc/ref/compiler.texi | |
parent | 6c4738ee4c4f92bf1f56727863dffe146dea03a1 (diff) | |
download | guile-b16dbb14bc20d41be04dc266595e901d6f70ac9f.tar.gz |
doc: Fix typo under "CPS Soup".
* doc/ref/compiler.texi (CPS Soup) : fix small typo in doc (closing
paren out of @code{} tag).
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc/ref/compiler.texi')
-rw-r--r-- | doc/ref/compiler.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/compiler.texi b/doc/ref/compiler.texi index 27964e881..865a77607 100644 --- a/doc/ref/compiler.texi +++ b/doc/ref/compiler.texi @@ -1120,7 +1120,7 @@ especially in cases when we know that we can just update the intmap in place. As an example, say we have an intmap mapping the integers 1 to 100 to the integers 42 to 141. Let's say that we want to transform this map by adding 1 to each value. There is already an efficient -@code{intmap-map} procedure in the @code{(language cps utils}) module, +@code{intmap-map} procedure in the @code{(language cps utils)} module, but if we didn't know about that we might do: @example |