Skip to content

Commit 2db8fdf

Browse files
committed
[DATALAD RUNCMD] run codespell throughout fixing few left typos automagically
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent b2c0779 commit 2db8fdf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ You can also create new files through either putting a local file with `put_file
7575

7676
```py
7777
>>> with fs.open('/tmp/message.dat', 'wb') as stream:
78-
... stream.write(b'super secret messsage!')
78+
... stream.write(b'super secret message!')
7979
...
8080
```
8181

@@ -85,7 +85,7 @@ And either download it through `get_file` or simply read it on the fly with open
8585
>>> with fs.open('/tmp/message.dat') as stream:
8686
... print(stream.read())
8787
...
88-
b'super secret messsage!'
88+
b'super secret message!'
8989
```
9090

9191
There are also a lot of other basic filesystem operations, such as `mkdir`, `touch` and `find`;

sshfs/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ async def _finalize(self, pool, stack):
105105

106106
# If an error occurs while the SSHFile is trying to
107107
# open the native file, then the client might get broken
108-
# due to partial initalization. We are just going to ignore
108+
# due to partial initialization. We are just going to ignore
109109
# the errors that arises on the finalization layer
110110
with suppress(BrokenPipeError):
111111
await stack.aclose()

0 commit comments

Comments
 (0)