Skip to content

Commit 429ec3b

Browse files
authored
Fix a typo in api.py (#11180)
1 parent 729668f commit 429ec3b

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

doc/whats-new.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ Documentation
4747
Internal Changes
4848
~~~~~~~~~~~~~~~~
4949

50+
- Fix a typo in ``xarray/backends/api.py`` (:pull:`11180`).
51+
By `Yaocheng Chen <https://github.com/yaochengchen>`_.
52+
5053
- Add stubtest configuration and allowlist for validating type annotations against
5154
runtime behavior. This enables CI integration for type stub validation and helps
5255
prevent type annotation regressions (:issue:`11086`).

xarray/backends/api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ class (a subclass of ``BackendEntrypoint``) can also be used.
537537
in the values of the task graph. See :py:func:`dask.array.from_array`.
538538
chunked_array_type: str, optional
539539
Which chunked array type to coerce this datasets' arrays to.
540-
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEnetryPoint` system.
540+
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEntryPoint` system.
541541
Experimental API that should not be relied upon.
542542
from_array_kwargs: dict
543543
Additional keyword arguments passed on to the `ChunkManagerEntrypoint.from_array` method used to create
@@ -773,7 +773,7 @@ class (a subclass of ``BackendEntrypoint``) can also be used.
773773
in the values of the task graph. See :py:func:`dask.array.from_array`.
774774
chunked_array_type: str, optional
775775
Which chunked array type to coerce the underlying data array to.
776-
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEnetryPoint` system.
776+
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEntryPoint` system.
777777
Experimental API that should not be relied upon.
778778
from_array_kwargs: dict
779779
Additional keyword arguments passed on to the `ChunkManagerEntrypoint.from_array` method used to create
@@ -1007,7 +1007,7 @@ def open_datatree(
10071007
in the values of the task graph. See :py:func:`dask.array.from_array`.
10081008
chunked_array_type: str, optional
10091009
Which chunked array type to coerce this datasets' arrays to.
1010-
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEnetryPoint` system.
1010+
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEntryPoint` system.
10111011
Experimental API that should not be relied upon.
10121012
from_array_kwargs: dict
10131013
Additional keyword arguments passed on to the `ChunkManagerEntrypoint.from_array` method used to create
@@ -1251,7 +1251,7 @@ def open_groups(
12511251
in the values of the task graph. See :py:func:`dask.array.from_array`.
12521252
chunked_array_type: str, optional
12531253
Which chunked array type to coerce this datasets' arrays to.
1254-
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEnetryPoint` system.
1254+
Defaults to 'dask' if installed, else whatever is registered via the `ChunkManagerEntryPoint` system.
12551255
Experimental API that should not be relied upon.
12561256
from_array_kwargs: dict
12571257
Additional keyword arguments passed on to the `ChunkManagerEntrypoint.from_array` method used to create

0 commit comments

Comments
 (0)