aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Josh Soref <jsoref@users.noreply.github.com>2017-11-27 05:23:20 -0500
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-11-27 10:23:20 +0000
commit8157b4d9b9f13449f4750f1ef40f9f20a2242eec (patch)
treeecd2f2994be8ca002f6815f617e1ac221a7f8d78 /include
parentae2cb7bd98f2f63b1b86320d7b8f0622d9a971d9 (diff)
Spelling (#223)
Fix spelling errors
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h16
-rw-r--r--include/fuse_common.h4
-rw-r--r--include/fuse_lowlevel.h4
3 files changed, 12 insertions, 12 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
*/
diff --git a/include/fuse_common.h b/include/fuse_common.h
index ff78cc9..29ad339 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -212,7 +212,7 @@ struct fuse_loop_config {
*
* This flag should always be set when available. If all file changes
* go through the kernel, *attr_timeout* should be set to a very large
- * number to avoid unneccessary getattr() calls.
+ * number to avoid unnecessary getattr() calls.
*
* This feature is enabled by default when supported by the kernel.
*/
@@ -384,7 +384,7 @@ struct fuse_conn_info {
* 4.8, only two types of requests fall into this category:
*
* 1. Read-ahead requests
- * 2. Asychronous direct I/O requests
+ * 2. Asynchronous direct I/O requests
*
* Read-ahead requests are generated (if max_readahead is
* non-zero) by the kernel to preemptively fill its caches
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index 72942ab..047b437 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -1443,7 +1443,7 @@ size_t fuse_add_direntry(fuse_req_t req, char *buf, size_t bufsize,
/**
* Add a directory entry to the buffer with the attributes
*
- * See documentation of `fuse_add_direntryt()` for more details.
+ * See documentation of `fuse_add_direntry()` for more details.
*
* @param req request handle
* @param buf the point where the new entry will be added to the buffer
@@ -1800,7 +1800,7 @@ int fuse_parse_cmdline(struct fuse_args *args,
* and the function returns NULL.
*
* Option parsing skips argv[0], which is assumed to contain the
- * program name. To prevent accidentially passing an option in
+ * program name. To prevent accidentally passing an option in
* argv[0], this element must always be present (even if no options
* are specified). It may be set to the empty string ('\0') if no
* reasonable value can be provided.