summaryrefslogtreecommitdiff
path: root/linuxnamespaces/filedescriptor.py
diff options
context:
space:
mode:
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)