summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2020-12-09 11:36:59 -0800
committerGitHub <noreply@github.com>2020-12-09 11:36:59 -0800
commite9fd689d576f834eff255d5f15edcad07c46e2ec (patch)
treed4d606afaabfae6632110824db0fd098521ea878 /shared-bindings
parente14b148e62a43f146695132b1ab9b763c62806cb (diff)
parenteedcc98cc5379f93704fd344289e2f5c8a60eddd (diff)
Merge pull request #3814 from mcauser2/main
Fix some spelling mistakes
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/os/__init__.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/os/__init__.c b/shared-bindings/os/__init__.c
index c499df972..8b9b38911 100644
--- a/shared-bindings/os/__init__.c
+++ b/shared-bindings/os/__init__.c
@@ -160,7 +160,7 @@ mp_obj_t os_stat(mp_obj_t path_in) {
MP_DEFINE_CONST_FUN_OBJ_1(os_stat_obj, os_stat);
//| def statvfs(path: str) -> Tuple[int, int, int, int, int, int, int, int, int, int]:
-//| """Get the status of a fileystem.
+//| """Get the status of a filesystem.
//|
//| Returns a tuple with the filesystem information in the following order:
//|
@@ -168,10 +168,10 @@ MP_DEFINE_CONST_FUN_OBJ_1(os_stat_obj, os_stat);
//| * ``f_frsize`` -- fragment size
//| * ``f_blocks`` -- size of fs in f_frsize units
//| * ``f_bfree`` -- number of free blocks
-//| * ``f_bavail`` -- number of free blocks for unpriviliged users
+//| * ``f_bavail`` -- number of free blocks for unprivileged users
//| * ``f_files`` -- number of inodes
//| * ``f_ffree`` -- number of free inodes
-//| * ``f_favail`` -- number of free inodes for unpriviliged users
+//| * ``f_favail`` -- number of free inodes for unprivileged users
//| * ``f_flag`` -- mount flags
//| * ``f_namemax`` -- maximum filename length
//|