diff --git a/src/hdmf/backends/hdf5/h5tools.py b/src/hdmf/backends/hdf5/h5tools.py index c9cbea752..b02f47f05 100644 --- a/src/hdmf/backends/hdf5/h5tools.py +++ b/src/hdmf/backends/hdf5/h5tools.py @@ -385,7 +385,7 @@ def copy_file(self, **kwargs): 'doc': 'A HERD object to populate with references.', 'default': None}, {'name': 'expandable', 'type': bool, 'default': True, - 'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions', + 'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions', 'of a dataset to None and enabling auto-chunking by default.')}) def write(self, **kwargs): """Write the container to an HDF5 file.""" @@ -831,7 +831,7 @@ def close_linked_files(self): {'name': 'export_source', 'type': str, 'doc': 'The source of the builders when exporting', 'default': None}, {'name': 'expandable', 'type': bool, 'default': True, - 'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions', + 'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions', 'of a dataset to None and enabling auto-chunking by default.')}) def write_builder(self, **kwargs): f_builder = popargs('builder', kwargs) @@ -1010,7 +1010,7 @@ def _filler(): {'name': 'export_source', 'type': str, 'doc': 'The source of the builders when exporting', 'default': None}, {'name': 'expandable', 'type': bool, 'default': True, - 'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions', + 'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions', 'of a dataset to None and enabling auto-chunking by default.')}, returns='the Group that was created', rtype=Group) def write_group(self, **kwargs): @@ -1113,7 +1113,7 @@ def write_link(self, **kwargs): {'name': 'export_source', 'type': str, 'doc': 'The source of the builders when exporting', 'default': None}, {'name': 'expandable', 'type': bool, 'default': True, - 'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions', + 'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions', 'of a dataset to None and enabling auto-chunking by default.')}, returns='the Dataset that was created', rtype=Dataset) def write_dataset(self, **kwargs): # noqa: C901