Skip to content

Commit 259d23b

Browse files
committed
Fix spelling errors in example/xmp.py
1 parent eccf761 commit 259d23b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

example/xmp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)