@@ -240,7 +240,7 @@ async def unlink(self, parent_inode: InodeT, name: FileNameT, ctx: "RequestConte
240240 '''Remove a (possibly special) file.
241241
242242 This method must remove the (special or regular) file *name* from the
243- direcory with inode *parent_inode*. *ctx* will be a `RequestContext`
243+ directory with inode *parent_inode*. *ctx* will be a `RequestContext`
244244 instance.
245245
246246 If the inode associated with *file* (i.e., not the *parent_inode*) has a
@@ -260,7 +260,7 @@ async def unlink(self, parent_inode: InodeT, name: FileNameT, ctx: "RequestConte
260260 async def rmdir (self , parent_inode : InodeT , name : FileNameT , ctx : "RequestContext" ) -> None :
261261 '''Remove directory *name*.
262262
263- This method must remove the directory *name* from the direcory with
263+ This method must remove the directory *name* from the directory with
264264 inode *parent_inode*. *ctx* will be a `RequestContext` instance. If
265265 there are still entries in the directory, the method should raise
266266 ``FUSEError(errno.ENOTEMPTY)``.
@@ -275,7 +275,7 @@ async def rmdir(self, parent_inode: InodeT, name: FileNameT, ctx: "RequestContex
275275
276276 (Since hard links to directories are not allowed by POSIX, this method
277277 is not required to check if there are still other directory entries
278- refering to the same inode. This conveniently avoids the ambigiouties
278+ referring to the same inode. This conveniently avoids the ambiguities
279279 associated with the ``.`` and ``..`` entries).
280280 '''
281281
@@ -350,7 +350,7 @@ async def link(
350350 new_name : FileNameT ,
351351 ctx : "RequestContext" ,
352352 ) -> "EntryAttributes" :
353- '''Create directory entry *name* in *parent_inode* refering to *inode*.
353+ '''Create directory entry *name* in *parent_inode* referring to *inode*.
354354
355355 *ctx* will be a `RequestContext` instance.
356356
0 commit comments