1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

doc: Fix minor typos

The spelling mistake is a clear fix, but the Arrays fix might not be as
obvious. Previously, with the "arrays" alias, the @ref macro would
render a superfluous period after the word "arrays", rendering (at least
within Emacs) as:

  you may wish to use see arrays. instead.

Signed-off-by: Mikael Djurfeldt <mikael@djurfeldt.com>
This commit is contained in:
Colin Woodbury 2022-12-09 13:15:56 +01:00 committed by Mikael Djurfeldt
parent ff7328df0d
commit 856c3f96fa
2 changed files with 2 additions and 2 deletions

View file

@ -6136,7 +6136,7 @@ accessed element in the list.
Vectors can contain any kind of Scheme object; it is even possible to Vectors can contain any kind of Scheme object; it is even possible to
have different types of objects in the same vector. For vectors have different types of objects in the same vector. For vectors
containing vectors, you may wish to use @ref{Arrays,arrays} instead. containing vectors, you may wish to use @ref{Arrays} instead.
Note, too, that vectors are a special case of one dimensional Note, too, that vectors are a special case of one dimensional
non-uniform arrays and that array procedures operate happily on vectors. non-uniform arrays and that array procedures operate happily on vectors.

View file

@ -6077,7 +6077,7 @@ be used to generalize something like @code{tsegment}:
@deffnx {Scheme Procedure} tfold reducer seed @deffnx {Scheme Procedure} tfold reducer seed
A folding transducer that yields the result of @code{(reducer seed A folding transducer that yields the result of @code{(reducer seed
value)}, saving it's result between iterations. value)}, saving its result between iterations.
@example @example
(list-transduce (tfold +) rcons (iota 10)) (list-transduce (tfold +) rcons (iota 10))