Skip to content

Commit 2a8e0ee

Browse files
authored
Spelling correction (#1526)
1 parent c24a9d8 commit 2a8e0ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fsspec/implementations/tests/test_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def test_mv_same_paths(m):
111111
assert m.exists("src/file.txt")
112112

113113

114-
def test_rm_no_psuedo_dir(m):
114+
def test_rm_no_pseudo_dir(m):
115115
m.touch("/dir1/dir2/file")
116116
m.rm("/dir1", recursive=True)
117117
assert not m.exists("/dir1/dir2/file")

fsspec/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def get_filesystem_class(protocol):
254254
def _import_class(cls, minv=None):
255255
"""Take a string FQP and return the imported class or identifier
256256
257-
clas is of the form "package.module.klass" or "package.module:subobject.klass"
257+
cls is of the form "package.module.klass" or "package.module:subobject.klass"
258258
"""
259259
if ":" in cls:
260260
mod, name = cls.rsplit(":", 1)

fsspec/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def read_block(
284284
found_end_delim = seek_delimiter(f, delimiter, 2**16)
285285
end = f.tell()
286286

287-
# Adjust split location to before delimiter iff seek found the
287+
# Adjust split location to before delimiter if seek found the
288288
# delimiter sequence, not start or end of file.
289289
if found_start_delim and split_before:
290290
start -= len(delimiter)

0 commit comments

Comments
 (0)