From 0284e84042c32688e399db7d2c9371a112ff7bb9 Mon Sep 17 00:00:00 2001 From: Vitaliy Mysak Date: Tue, 6 Aug 2024 16:19:31 -0700 Subject: [PATCH] Fix error in documentation --- src/multicsv/subtextio.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/multicsv/subtextio.py b/src/multicsv/subtextio.py index 45a3769..a1a80fe 100644 --- a/src/multicsv/subtextio.py +++ b/src/multicsv/subtextio.py @@ -57,8 +57,7 @@ class allows for convenient and isolated operations within a given - `tell() -> int`: Returns the current position in the buffer. - `flush() -> None`: Writes the buffer content back to the base TextIO object. - - `close() -> None`: Flushes the buffer and closes the base TextIO - object. + - `close() -> None`: Flushes the buffer and closes this IO object. - Context Management Support: Allows for usage with `with` statement for automatic resource management.