summaryrefslogtreecommitdiff
path: root/linuxnamespaces/atlocation.py
diff options
context:
space:
mode:
Diffstat (limited to 'linuxnamespaces/atlocation.py')
-rw-r--r--linuxnamespaces/atlocation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxnamespaces/atlocation.py b/linuxnamespaces/atlocation.py
index 5871db8..45d2d59 100644
--- a/linuxnamespaces/atlocation.py
+++ b/linuxnamespaces/atlocation.py
@@ -257,7 +257,7 @@ class AtLocation:
)
def rmdir(self) -> None:
- """Wrapper for os.rmdir suppling path and dir_fd."""
+ """Wrapper for os.rmdir supplying path and dir_fd."""
if self.flags != AtFlags.NONE:
raise NotImplementedError(
"rmdir is not supported for an AtLocation with flags"
@@ -278,7 +278,7 @@ class AtLocation:
os.symlink(linktarget, self.location, dir_fd=self.fd_or_none)
def unlink(self) -> None:
- """Wrapper for os.unlink suppling path and dir_fd."""
+ """Wrapper for os.unlink supplying path and dir_fd."""
if self.flags != AtFlags.NONE:
raise NotImplementedError(
"unlink is not supported for an AtLocation with flags"