mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane
This commit is contained in:
parent
9bc3653083
commit
f8ae4faf93
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue