summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorMike Causer <mcauser@gmail.com>2020-12-10 02:52:18 +1100
committerMike Causer <mcauser@gmail.com>2020-12-10 02:52:18 +1100
commiteedcc98cc5379f93704fd344289e2f5c8a60eddd (patch)
treeb0edae3059a39b367317b9acd7057c3b8475abcb /shared-bindings
parent133013083ab582fa87a4c7dfb53d068e09864905 (diff)
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
//|