summaryrefslogtreecommitdiff
path: root/linuxnamespaces/filedescriptor.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2024-06-11 23:00:14 +0200
committerHelmut Grohne <helmut@subdivi.de>2024-06-11 23:00:14 +0200
commit226e83eb8f0662f302c7f98c6b77bf88fae01997 (patch)
tree83e88fb06252ce6639b2a0b9fc161166a88ea23f /linuxnamespaces/filedescriptor.py
parente2f359f814805285e7ece3c9edba2cc93c958540 (diff)
downloadpython-linuxnamespaces-226e83eb8f0662f302c7f98c6b77bf88fae01997.tar.gz
fix formatting and spelling errors
No functional changes.
Diffstat (limited to 'linuxnamespaces/filedescriptor.py')
-rw-r--r--linuxnamespaces/filedescriptor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxnamespaces/filedescriptor.py b/linuxnamespaces/filedescriptor.py
index 4395a54..e4eff9b 100644
--- a/linuxnamespaces/filedescriptor.py
+++ b/linuxnamespaces/filedescriptor.py
@@ -27,7 +27,7 @@ class FileDescriptor(int):
def close(self) -> None:
"""Close the file descriptor. Since int is immutable, the caller is
- responsibe for not closing twice.
+ responsible for not closing twice.
"""
os.close(self)