summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--psutil/_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_common.py b/psutil/_common.py
index c6a6d667..1e33699c 100644
--- a/psutil/_common.py
+++ b/psutil/_common.py
@@ -716,7 +716,7 @@ wrap_numbers.cache_info = _wn.cache_info
# >>> with open(file) as f:
# ... for line in f:
# ... ...
-# Per-line default buffer size for binary files is 1K. For text files
+# Default per-line buffer size for binary files is 1K. For text files
# is 8K. We use a bigger buffer (32K) in order to have more consistent
# results when reading /proc pseudo files on Linux, see:
# https://github.com/giampaolo/psutil/issues/2050