diff options
-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: """ |