summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index 6664599..0ac7a49 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -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)