1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

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
This commit is contained in:
Arun Isaac 2020-07-06 21:08:50 +05:30 committed by Rob Browning
parent 117c398341
commit 7dde220750

View file

@ -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}).