aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 4816617..3524ce4 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -305,7 +305,7 @@ struct fuse_operations {
* but libfuse and the kernel will still assign a different
* inode for internal use (called the "nodeid").
*
- * `fi` will always be NULL if the file is not currenly open, but
+ * `fi` will always be NULL if the file is not currenlty open, but
* may also be NULL if the file is open.
*/
int (*getattr) (const char *, struct stat *, struct fuse_file_info *fi);
@@ -361,14 +361,14 @@ struct fuse_operations {
/** Change the permission bits of a file
*
- * `fi` will always be NULL if the file is not currenly open, but
+ * `fi` will always be NULL if the file is not currenlty open, but
* may also be NULL if the file is open.
*/
int (*chmod) (const char *, mode_t, struct fuse_file_info *fi);
/** Change the owner and group of a file
*
- * `fi` will always be NULL if the file is not currenly open, but
+ * `fi` will always be NULL if the file is not currenlty open, but
* may also be NULL if the file is open.
*
* Unless FUSE_CAP_HANDLE_KILLPRIV is disabled, this method is
@@ -378,7 +378,7 @@ struct fuse_operations {
/** Change the size of a file
*
- * `fi` will always be NULL if the file is not currenly open, but
+ * `fi` will always be NULL if the file is not currenlty open, but
* may also be NULL if the file is open.
*
* Unless FUSE_CAP_HANDLE_KILLPRIV is disabled, this method is
@@ -642,7 +642,7 @@ struct fuse_operations {
* This supersedes the old utime() interface. New applications
* should use this.
*
- * `fi` will always be NULL if the file is not currenly open, but
+ * `fi` will always be NULL if the file is not currenlty open, but
* may also be NULL if the file is open.
*
* See the utimensat(2) man page for details.
@@ -816,7 +816,7 @@ struct fuse_context {
* @param argv the argument vector passed to the main() function
* @param op the file system operation
* @param private_data Initial value for the `private_data`
- * field of `struct fuse_context`. May be overriden by the
+ * field of `struct fuse_context`. May be overridden by the
* `struct fuse_operations.init` handler.
* @return 0 on success, nonzero on failure
*
@@ -869,7 +869,7 @@ void fuse_lib_help(struct fuse_args *args);
* @param op the filesystem operations
* @param op_size the size of the fuse_operations structure
* @param private_data Initial value for the `private_data`
- * field of `struct fuse_context`. May be overriden by the
+ * field of `struct fuse_context`. May be overridden by the
* `struct fuse_operations.init` handler.
* @return the created FUSE handle
*/
@@ -1171,7 +1171,7 @@ int fuse_notify_poll(struct fuse_pollhandle *ph);
* @param op the filesystem operations
* @param op_size the size of the fuse_operations structure
* @param private_data Initial value for the `private_data`
- * field of `struct fuse_context`. May be overriden by the
+ * field of `struct fuse_context`. May be overridden by the
* `struct fuse_operations.init` handler.
* @return a new filesystem object
*/