@@ -199,7 +199,7 @@ def open(
199199 the backend implementation. Ignored otherwise.
200200 **kwargs
201201 Additional parameters are passed through to [`zarr.creation.open_array`][] or
202- [`zarr.api.synchronous .open_group`][ ].
202+ [`open_group`][ zarr.api.asynchronous .open_group].
203203
204204 Returns
205205 -------
@@ -291,7 +291,7 @@ def save_array(
291291 If using an fsspec URL to create the store, these will be passed to
292292 the backend implementation. Ignored otherwise.
293293 **kwargs
294- Passed through to [`create`][zarr.api.synchronous .create], e.g., compressor.
294+ Passed through to [`create`][zarr.api.asynchronous .create], e.g., compressor.
295295 """
296296 return sync (
297297 async_api .save_array (
@@ -383,7 +383,7 @@ def array(data: npt.ArrayLike | Array, **kwargs: Any) -> Array:
383383 data : array_like
384384 The data to fill the array with.
385385 **kwargs
386- Passed through to [`create`][zarr.api.synchronous .create].
386+ Passed through to [`create`][zarr.api.asynchronous .create].
387387
388388 Returns
389389 -------
@@ -1196,7 +1196,7 @@ def empty(shape: tuple[int, ...], **kwargs: Any) -> Array:
11961196 shape : int or tuple of int
11971197 Shape of the empty array.
11981198 **kwargs
1199- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1199+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
12001200
12011201 Returns
12021202 -------
@@ -1223,7 +1223,7 @@ def empty_like(a: ArrayLike, **kwargs: Any) -> Array:
12231223 a : array-like
12241224 The array to create an empty array like.
12251225 **kwargs
1226- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1226+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
12271227
12281228 Returns
12291229 -------
@@ -1250,7 +1250,7 @@ def full(shape: tuple[int, ...], fill_value: Any, **kwargs: Any) -> Array:
12501250 fill_value : scalar
12511251 Fill value.
12521252 **kwargs
1253- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1253+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
12541254
12551255 Returns
12561256 -------
@@ -1270,7 +1270,7 @@ def full_like(a: ArrayLike, **kwargs: Any) -> Array:
12701270 a : array-like
12711271 The array to create an empty array like.
12721272 **kwargs
1273- Keyword arguments passed to [zarr.api.asynchronous.create][].
1273+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
12741274
12751275 Returns
12761276 -------
@@ -1289,7 +1289,7 @@ def ones(shape: tuple[int, ...], **kwargs: Any) -> Array:
12891289 shape : int or tuple of int
12901290 Shape of the empty array.
12911291 **kwargs
1292- Keyword arguments passed to [zarr.api.asynchronous.create][].
1292+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
12931293
12941294 Returns
12951295 -------
@@ -1308,7 +1308,7 @@ def ones_like(a: ArrayLike, **kwargs: Any) -> Array:
13081308 a : array-like
13091309 The array to create an empty array like.
13101310 **kwargs
1311- Keyword arguments passed to [zarr.api.asynchronous.create][].
1311+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
13121312
13131313 Returns
13141314 -------
@@ -1344,7 +1344,7 @@ def open_array(
13441344 If using an fsspec URL to create the store, these will be passed to
13451345 the backend implementation. Ignored otherwise.
13461346 **kwargs
1347- Any keyword arguments to pass to [zarr.api.synchronous .create][ ].
1347+ Any keyword arguments to pass to [`create`][ zarr.api.asynchronous .create].
13481348
13491349
13501350 Returns
@@ -1396,7 +1396,7 @@ def zeros(shape: tuple[int, ...], **kwargs: Any) -> Array:
13961396 shape : int or tuple of int
13971397 Shape of the empty array.
13981398 **kwargs
1399- Keyword arguments passed to [zarr.api.asynchronous.create][].
1399+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
14001400
14011401 Returns
14021402 -------
@@ -1415,7 +1415,7 @@ def zeros_like(a: ArrayLike, **kwargs: Any) -> Array:
14151415 a : array-like
14161416 The array to create an empty array like.
14171417 **kwargs
1418- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1418+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
14191419
14201420 Returns
14211421 -------
0 commit comments