@@ -110,7 +110,7 @@ def utime(self, path, times):
110110
111111# The following utimens method would do the same as the above utime method.
112112# We can't make it better though as the Python stdlib doesn't know of
113- # subsecond preciseness in acces /modify times.
113+ # sub-second preciseness in access /modify times.
114114#
115115# def utimens(self, path, ts_acc, ts_mod):
116116# os.utime("." + path, (ts_acc.tv_sec, ts_mod.tv_sec))
@@ -134,7 +134,7 @@ def access(self, path, mode):
134134# # We use the "user" namespace to please XFS utils
135135# aa = ["user." + a for a in ("foo", "bar")]
136136# if size == 0:
137- # # We are asked for size of the attr list, ie . joint size of attrs
137+ # # We are asked for size of the attr list, i.e . joint size of attrs
138138# # plus null separators.
139139# return len("".join(aa)) + len(aa)
140140# return aa
@@ -146,7 +146,7 @@ def statfs(self):
146146 If you are not reusing an existing statvfs object, start with
147147 fuse.StatVFS(), and define the attributes.
148148
149- To provide usable information (ie ., you want sensible df(1)
149+ To provide usable information (i.e ., you want sensible df(1)
150150 output, you are suggested to specify the following attributes:
151151
152152 - f_bsize - preferred size of file blocks, in bytes
0 commit comments