diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 8658b9785..30190f315 100644 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -6136,7 +6136,7 @@ accessed element in the list. Vectors can contain any kind of Scheme object; it is even possible to 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 non-uniform arrays and that array procedures operate happily on vectors. diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index bce5b4eac..0ef136215 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -6077,7 +6077,7 @@ be used to generalize something like @code{tsegment}: @deffnx {Scheme Procedure} tfold 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 (list-transduce (tfold +) rcons (iota 10))