]> granicus.if.org Git - python/commitdiff
Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane
authorSandro Tosi <sandro.tosi@gmail.com>
Mon, 23 Apr 2012 18:07:15 +0000 (20:07 +0200)
committerSandro Tosi <sandro.tosi@gmail.com>
Mon, 23 Apr 2012 18:07:15 +0000 (20:07 +0200)
Lib/shutil.py

index 6664599ecc8ee6dc018ff38494279bc4b0086190..0ac7a49c458d86e405daf819c077e4ac9f374b7c 100644 (file)
@@ -822,7 +822,7 @@ if hasattr(os, 'statvfs'):
     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)