aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Ionite <[email protected]>2022-12-04 09:17:29 +0800
committerGravatar GitHub <[email protected]>2022-12-04 09:17:29 +0800
commit6f888d5a49262d23ae64802590d198250e286086 (patch)
tree8fd41fda4c2440e23d8aa2ea65c67340e58e91ab
parentCorrect Size(IntEnum) naming (diff)
Update MemFS docstring
Co-authored-by: Mark <[email protected]>
-rw-r--r--snekbox/memfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/memfs.py b/snekbox/memfs.py
index 0e13da4..ff63454 100644
--- a/snekbox/memfs.py
+++ b/snekbox/memfs.py
@@ -20,7 +20,7 @@ __all__ = ("MemFS",)
class MemFS:
- """A memory temporary file system."""
+ """An in-memory temporary file system."""
def __init__(self, instance_size: int, root_dir: str | Path = "/memfs") -> None:
"""