From 7dde220750bed8bfaf5a2e7d6ad3db1ae98e68be Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 6 Jul 2020 21:08:50 +0530 Subject: [PATCH] Replace "either" with "either array" in make-shared-array docs * doc/ref/api-data.texi (Shared Arrays): Replace "either" with "either array" in make-shared-array documentation. Closes: 42228 --- doc/ref/api-data.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 53924db01..645aa86f1 100644 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -7676,8 +7676,8 @@ row-major order, but that might change in the future. Use @deffn {Scheme Procedure} make-shared-array oldarray mapfunc bound @dots{} @deffnx {C Function} scm_make_shared_array (oldarray, mapfunc, boundlist) -Return a new array which shares the storage of @var{oldarray}. -Changes made through either affect the same underlying storage. The +Return a new array which shares the storage of @var{oldarray}. Changes +made through either array affect the same underlying storage. The @var{bound} @dots{} arguments are the shape of the new array, the same as @code{make-array} (@pxref{Array Procedures}).