Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5b07e67

Browse files
committed
Update quick.rst
Remove an extraneous trailing period and add a missing 's'.
1 parent efc83ca commit 5b07e67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/quick.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The very first thing you'll need to do is create a new file::
2020
>>> import h5py
2121
>>> import numpy as np
2222
>>>
23-
>>> f = h5py.File("mytestfile.hdf5", "w").
23+
>>> f = h5py.File("mytestfile.hdf5", "w")
2424

2525
The :ref:`File object <file>` is your starting point. It has a couple of
2626
methods which look interesting. One of them is ``create_dataset``::
@@ -83,7 +83,7 @@ Specifying a full path works just fine::
8383
u'/subgroup2/dataset_three'
8484

8585
Groups support most of the Python dictionary-style interface.
86-
You retrieve object in the file using the item-retrieval syntax::
86+
You retrieve objects in the file using the item-retrieval syntax::
8787

8888
>>> dataset_three = f['subgroup/dataset_three']
8989

0 commit comments

Comments
 (0)