Skip to content

Commit 2bc18a3

Browse files
committed
Fix typos in tutorial.py (pydata#2783)
1 parent 612d390 commit 2bc18a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xarray/tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ def open_dataset(name, cache=True, cache_dir=_default_cache_dir,
9292
def load_dataset(*args, **kwargs):
9393
"""
9494
`load_dataset` will be removed in version 0.12. The current behavior of
95-
this function can be achived by using `tutorial.open_dataset(...).load()`.
95+
this function can be achieved by using `tutorial.open_dataset(...).load()`.
9696
9797
See Also
9898
--------
9999
open_dataset
100100
"""
101101
warnings.warn(
102102
"load_dataset` will be removed in xarray version 0.12. The current "
103-
"behavior of this function can be achived by using "
103+
"behavior of this function can be achieved by using "
104104
"`tutorial.open_dataset(...).load()`.",
105105
DeprecationWarning, stacklevel=2)
106106
return open_dataset(*args, **kwargs).load()

0 commit comments

Comments
 (0)