Skip to content

Commit 39ffc9a

Browse files
committed
>> fixed typos
1 parent 76a6cf4 commit 39ffc9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/source/changes/version_0_33.rst.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ New features
4949
Miscellaneous improvements
5050
^^^^^^^^^^^^^^^^^^^^^^^^^^
5151

52-
* scalar objects (i.e of type int, float, bool, string, data, time or datetime) belonging to a session
53-
are now also loaded and saved when using the HDF5 or pickle format (closes :issue:`842`).
52+
* scalar objects (i.e of type int, float, bool, string, date, time or datetime) belonging to a session
53+
are now also saved and loaded when using the HDF5 or pickle format (closes :issue:`842`).
5454

5555

5656
Fixes

larray/core/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def __setstate__(self, d):
349349
def load(self, fname, names=None, engine='auto', display=False, **kwargs):
350350
r"""
351351
Load objects from a file, or several .csv files.
352-
The Excel and CSV formats can only contains objects of Array type (plus metadata).
352+
The Excel and CSV formats can only contain objects of Array type (plus metadata).
353353
354354
WARNING: never load a file using the pickle engine (.pkl or .pickle) from an untrusted source, as it can lead
355355
to arbitrary code execution.
@@ -448,7 +448,7 @@ def load(self, fname, names=None, engine='auto', display=False, **kwargs):
448448
def save(self, fname, names=None, engine='auto', overwrite=True, display=False, **kwargs):
449449
r"""
450450
Dumps objects from the current session to a file, or several .csv files.
451-
The Excel and CSV formats only dumps objects of Array type (plus metadata).
451+
The Excel and CSV formats only dump objects of Array type (plus metadata).
452452
453453
Parameters
454454
----------

0 commit comments

Comments
 (0)