Skip to content

Commit

Permalink
Clarify some docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrant committed Feb 25, 2014
1 parent e7902fc commit 99bdaef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions distarray/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def load(self, filename):

def save_hdf5(self, filename, da, dataset='buffer'):
"""
Save a DistArray to an ``.hdf5`` file.
Save a DistArray to a dataset in an ``.hdf5`` file.
Parameters
----------
Expand All @@ -306,8 +306,8 @@ def load_hdf5(self, filename, dataset='buffer'):
----------
filename : str
Filename to load.
dataset : str
Dataset to load from the HDF5 file.
dataset : str, optional
The dataset to load the DistArray from (the default is 'buffer').
Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions distarray/local/denselocalarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,8 +899,8 @@ def save_hdf5(filename, arr, dataset='buffer'):
Name of file to write to.
arr : LocalArray
Array to save to a file.
dataset : str
Name to use for dataset in HDF5 file.
dataset : str, optional
The dataset to save the LocalArray to (the default is 'buffer').
"""
import h5py
Expand Down

0 comments on commit 99bdaef

Please sign in to comment.