diff options
author | 2022-12-04 09:17:29 +0800 | |
---|---|---|
committer | 2022-12-04 09:17:29 +0800 | |
commit | 6f888d5a49262d23ae64802590d198250e286086 (patch) | |
tree | 8fd41fda4c2440e23d8aa2ea65c67340e58e91ab | |
parent | Correct Size(IntEnum) naming (diff) |
Update MemFS docstring
Co-authored-by: Mark <[email protected]>
-rw-r--r-- | snekbox/memfs.py | 2 |
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: """ |