1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

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>
This commit is contained in:
Fulbert 2022-09-13 18:28:40 +02:00 committed by Ludovic Courtès
parent 6c4738ee4c
commit b16dbb14bc

View file

@ -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