aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorReuben Hawkins <reubenhwk@gmail.com>2011-05-23 07:10:35 -0700
committerMiklos Szeredi <mszeredi@suse.cz>2011-05-25 11:30:43 +0200
commit54f93a7a1dbae4d2c3dceec47b9be1c8c059e16b (patch)
tree6704eb75521af501a59e321c963f6dfb38629de7 /include
parent1193a39c0869a3608f22472735bcffdcccb6b2a5 (diff)
downloadandroid_external_fuse-54f93a7a1dbae4d2c3dceec47b9be1c8c059e16b.tar.gz
android_external_fuse-54f93a7a1dbae4d2c3dceec47b9be1c8c059e16b.tar.bz2
android_external_fuse-54f93a7a1dbae4d2c3dceec47b9be1c8c059e16b.zip
Spell checking comments, etc...
...with the help of vim :set spell modified: FAQ modified: include/fuse.h modified: include/fuse_common.h modified: include/fuse_opt.h modified: lib/fuse_kern_chan.c modified: util/fusermount.c
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h2
-rw-r--r--include/fuse_common.h2
-rw-r--r--include/fuse_opt.h8
3 files changed, 6 insertions, 6 deletions
diff --git a/include/fuse.h b/include/fuse.h
index ff8c253..4736bbb 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -412,7 +412,7 @@ struct fuse_operations {
* information without calling this method. This ensures, that
* for local locks the l_pid field is correctly filled in. The
* results may not be accurate in case of race conditions and in
- * the presence of hard links, but it's unlikly that an
+ * the presence of hard links, but it's unlikely that an
* application would rely on accurate GETLK results in these
* cases. If a conflicting lock is not found, this method will be
* called, and the filesystem may fill out l_pid by a meaningful
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 0c4c1d4..db17fa6 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -278,7 +278,7 @@ enum fuse_buf_flags {
*
* If this flag is set then retry operation on file descriptor
* until .size bytes have been copied or an error or EOF is
- * detetected.
+ * detected.
*/
FUSE_BUF_FD_RETRY = (1 << 3),
};
diff --git a/include/fuse_opt.h b/include/fuse_opt.h
index 8c08d77..add0a30 100644
--- a/include/fuse_opt.h
+++ b/include/fuse_opt.h
@@ -21,7 +21,7 @@ extern "C" {
/**
* Option description
*
- * This structure describes a single option, and and action associated
+ * This structure describes a single option, and action associated
* with it, in case it matches.
*
* More than one such match may occur, in which case the action for
@@ -130,7 +130,7 @@ struct fuse_args {
/**
* Key value passed to the processing function for all non-options
*
- * Non-options are the arguments beginning with a charater other than
+ * Non-options are the arguments beginning with a character other than
* '-' or all arguments after the special '--' option
*/
#define FUSE_OPT_KEY_NONOPT -2
@@ -161,7 +161,7 @@ struct fuse_args {
*
* The 'arg' parameter will always contain the whole argument or
* option including the parameter if exists. A two-argument option
- * ("-x foo") is always converted to single arguemnt option of the
+ * ("-x foo") is always converted to single argument option of the
* form "-xfoo" before this function is called.
*
* Options of the form '-ofoo' are passed to this function without the
@@ -234,7 +234,7 @@ int fuse_opt_add_arg(struct fuse_args *args, const char *arg);
* argument vector
*
* Adds the argument to the N-th position. This is useful for adding
- * options at the beggining of the array which must not come after the
+ * options at the beginning of the array which must not come after the
* special '--' option.
*
* @param args is the structure containing the current argument list