Skip to content

Commit 75704c5

Browse files
committed
dev
1 parent a3d5e4b commit 75704c5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cf/read_write/um/umread.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3484,7 +3484,7 @@ def _open_um_file(
34843484
parse: `bool`, optional
34853485
If True, the default, then parse the contents. If
34863486
False then the contents are not parsed, which can be
3487-
considerable faster in cases when the contents are not
3487+
considerably faster in cases when the contents are not
34883488
required.
34893489
34903490
.. versionadded:: NEXTVERSION
@@ -3538,7 +3538,7 @@ def is_um_file(self, filename):
35383538
"""
35393539
try:
35403540
# Note: No need to completely parse the file to ascertain
3541-
# if it's PP of FF.
3541+
# if it's PP or FF.
35423542
self.file_open(filename, parse=False)
35433543
except Exception:
35443544
self.file_close()
@@ -3572,7 +3572,7 @@ def file_open(self, filename, parse=True):
35723572
parse: `bool`, optional
35733573
If True, the default, then parse the contents. If
35743574
False then the contents are not parsed, which can be
3575-
considerable faster in cases when the contents are not
3575+
considerably faster in cases when the contents are not
35763576
required.
35773577
35783578
.. versionadded:: NEXTVERSION

cf/umread_lib/umfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,8 @@ def from_file_and_offsets(
293293
"""Instantiate a `Rec` object from the `File` object and the
294294
header and data offsets.
295295
296-
The lookup header are read in immediately, and the returned
297-
record object is ready for calling `get_data`.
296+
The lookup header is read from disk immediately, and the
297+
returned record object is ready for calling `get_data`.
298298
299299
:Parameters:
300300
@@ -313,7 +313,7 @@ def from_file_and_offsets(
313313
disk_length: `int`
314314
The length in bytes of the data in the file. If
315315
`None`, the default, then the disk length will be
316-
calculated from the integer.
316+
calculated from the integer header.
317317
318318
:Returns:
319319

0 commit comments

Comments
 (0)