Skip to content

Commit f284794

Browse files
committed
fix tutorial copyall -> copy_all [ci skip]
1 parent f6614b0 commit f284794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ Copying/migrating data
775775

776776
If you have some data in an HDF5 file and would like to copy some or all of it
777777
into a Zarr group, or vice-versa, the :func:`zarr.convenience.copy` and
778-
:func:`zarr.convenience.copyall` functions can be used. Here's an example
778+
:func:`zarr.convenience.copy_all` functions can be used. Here's an example
779779
copying a group named 'foo' from an HDF5 file to a Zarr group::
780780

781781
>>> import h5py
@@ -807,7 +807,7 @@ copying a group named 'foo' from an HDF5 file to a Zarr group::
807807
>>> source.close()
808808

809809
If rather than copying a single group or dataset you would like to copy all
810-
groups and datasets, use :func:`zarr.convenience.copyall`, e.g.::
810+
groups and datasets, use :func:`zarr.convenience.copy_all`, e.g.::
811811

812812
>>> source = h5py.File('data/example.h5', mode='r')
813813
>>> dest = zarr.open_group('data/example2.zarr', mode='w')

0 commit comments

Comments
 (0)