1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

doc: Fix typos in the manual.

* doc/ref/api-control.texi:
* doc/ref/r6rs.texi:
* doc/ref/sxml.texi: Fix typos.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Jan Synacek 2020-05-17 13:03:44 +02:00 committed by Ludovic Courtès
parent 9c03e44dcf
commit ab861be9b2
3 changed files with 4 additions and 4 deletions

View file

@ -678,8 +678,8 @@ Evaluate @var{expr} in a prompt, optionally specifying a tag and a
handler. If no tag is given, the default prompt tag is used. handler. If no tag is given, the default prompt tag is used.
If no handler is given, a default handler is installed. The default If no handler is given, a default handler is installed. The default
handler accepts a procedure of one argument, which will called on the handler accepts a procedure of one argument, which will be called on
captured continuation, within a prompt. the captured continuation, within a prompt.
Sometimes it's easier just to show code, as in this case: Sometimes it's easier just to show code, as in this case:

View file

@ -1173,7 +1173,7 @@ evaluates to @code{baz}.
@deffn {Scheme Procedure} raise obj @deffn {Scheme Procedure} raise obj
Equivalent to core Guile @code{(raise-exception @var{obj})}. Equivalent to core Guile @code{(raise-exception @var{obj})}.
@xref{Raising and Handling Exceptions}. p(Unfortunately, @code{raise} @xref{Raising and Handling Exceptions}. (Unfortunately, @code{raise}
is already bound to a different function in core Guile. is already bound to a different function in core Guile.
@xref{Signals}.) @xref{Signals}.)
@end deffn @end deffn

View file

@ -230,7 +230,7 @@ SAX parsers were created to give the programmer more control on the
parsing process. A programmer gives the SAX parser a number of parsing process. A programmer gives the SAX parser a number of
``callbacks'': functions that will be called on various features of the ``callbacks'': functions that will be called on various features of the
XML stream as they are encountered. SAX parsers are more efficient, but XML stream as they are encountered. SAX parsers are more efficient, but
much harder to user, as users typically have to manually maintain a much harder to use, as users typically have to manually maintain a
stack of open elements. stack of open elements.
Kiselyov realized that the SAX programming model could be made much Kiselyov realized that the SAX programming model could be made much