[Python-checkins] cpython: Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane

sandro.tosi python-checkins at python.org
Mon Apr 23 20:08:49 CEST 2012


http://hg.python.org/cpython/rev/629d4c2faa87
changeset:   76505:629d4c2faa87
user:        Sandro Tosi <sandro.tosi at gmail.com>
date:        Mon Apr 23 20:07:15 2012 +0200
summary:
  Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane

files:
  Lib/shutil.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/shutil.py b/Lib/shutil.py
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -822,7 +822,7 @@
     def disk_usage(path):
         """Return disk usage statistics about the given path.
 
-        Returned valus is a named tuple with attributes 'total', 'used' and
+        Returned value is a named tuple with attributes 'total', 'used' and
         'free', which are the amount of total, used and free space, in bytes.
         """
         st = os.statvfs(path)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list