@@ -199,7 +199,7 @@ def open(
199
199
the backend implementation. Ignored otherwise.
200
200
**kwargs
201
201
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].
203
203
204
204
Returns
205
205
-------
@@ -291,7 +291,7 @@ def save_array(
291
291
If using an fsspec URL to create the store, these will be passed to
292
292
the backend implementation. Ignored otherwise.
293
293
**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.
295
295
"""
296
296
return sync (
297
297
async_api .save_array (
@@ -383,7 +383,7 @@ def array(data: npt.ArrayLike | Array, **kwargs: Any) -> Array:
383
383
data : array_like
384
384
The data to fill the array with.
385
385
**kwargs
386
- Passed through to [`create`][zarr.api.synchronous .create].
386
+ Passed through to [`create`][zarr.api.asynchronous .create].
387
387
388
388
Returns
389
389
-------
@@ -1196,7 +1196,7 @@ def empty(shape: tuple[int, ...], **kwargs: Any) -> Array:
1196
1196
shape : int or tuple of int
1197
1197
Shape of the empty array.
1198
1198
**kwargs
1199
- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1199
+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
1200
1200
1201
1201
Returns
1202
1202
-------
@@ -1223,7 +1223,7 @@ def empty_like(a: ArrayLike, **kwargs: Any) -> Array:
1223
1223
a : array-like
1224
1224
The array to create an empty array like.
1225
1225
**kwargs
1226
- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1226
+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
1227
1227
1228
1228
Returns
1229
1229
-------
@@ -1250,7 +1250,7 @@ def full(shape: tuple[int, ...], fill_value: Any, **kwargs: Any) -> Array:
1250
1250
fill_value : scalar
1251
1251
Fill value.
1252
1252
**kwargs
1253
- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1253
+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
1254
1254
1255
1255
Returns
1256
1256
-------
@@ -1270,7 +1270,7 @@ def full_like(a: ArrayLike, **kwargs: Any) -> Array:
1270
1270
a : array-like
1271
1271
The array to create an empty array like.
1272
1272
**kwargs
1273
- Keyword arguments passed to [zarr.api.asynchronous.create][].
1273
+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
1274
1274
1275
1275
Returns
1276
1276
-------
@@ -1289,7 +1289,7 @@ def ones(shape: tuple[int, ...], **kwargs: Any) -> Array:
1289
1289
shape : int or tuple of int
1290
1290
Shape of the empty array.
1291
1291
**kwargs
1292
- Keyword arguments passed to [zarr.api.asynchronous.create][].
1292
+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
1293
1293
1294
1294
Returns
1295
1295
-------
@@ -1308,7 +1308,7 @@ def ones_like(a: ArrayLike, **kwargs: Any) -> Array:
1308
1308
a : array-like
1309
1309
The array to create an empty array like.
1310
1310
**kwargs
1311
- Keyword arguments passed to [zarr.api.asynchronous.create][].
1311
+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
1312
1312
1313
1313
Returns
1314
1314
-------
@@ -1344,7 +1344,7 @@ def open_array(
1344
1344
If using an fsspec URL to create the store, these will be passed to
1345
1345
the backend implementation. Ignored otherwise.
1346
1346
**kwargs
1347
- Any keyword arguments to pass to [zarr.api.synchronous .create][ ].
1347
+ Any keyword arguments to pass to [`create`][ zarr.api.asynchronous .create].
1348
1348
1349
1349
1350
1350
Returns
@@ -1396,7 +1396,7 @@ def zeros(shape: tuple[int, ...], **kwargs: Any) -> Array:
1396
1396
shape : int or tuple of int
1397
1397
Shape of the empty array.
1398
1398
**kwargs
1399
- Keyword arguments passed to [zarr.api.asynchronous.create][].
1399
+ Keyword arguments passed to [` zarr.api.asynchronous.create` ][].
1400
1400
1401
1401
Returns
1402
1402
-------
@@ -1415,7 +1415,7 @@ def zeros_like(a: ArrayLike, **kwargs: Any) -> Array:
1415
1415
a : array-like
1416
1416
The array to create an empty array like.
1417
1417
**kwargs
1418
- Keyword arguments passed to [zarr.api.asynchronous.create][ ].
1418
+ Keyword arguments passed to [`create`][ zarr.api.asynchronous.create].
1419
1419
1420
1420
Returns
1421
1421
-------
0 commit comments