Spell checking comments, etc...
authorReuben Hawkins <reubenhwk@gmail.com>
Mon, 23 May 2011 14:10:35 +0000 (07:10 -0700)
committerMiklos Szeredi <mszeredi@suse.cz>
Wed, 25 May 2011 09:30:43 +0000 (11:30 +0200)
...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

FAQ
include/fuse.h
include/fuse_common.h
include/fuse_opt.h
lib/fuse_kern_chan.c
util/fusermount.c

diff --git a/FAQ b/FAQ
index 8598f7e772af2ddff312ab0c7f425dc6ea6e7167..038fb4b17d2a215d6eb0f1ddaefa8fd91b8d2502 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -93,7 +93,7 @@ See COPYING.LIB in the distribution.
 In simple terms as long as you are linking dynamically (the default)
 there are no limitations on linking with libfuse.  For example you may
 distribute the filesystem itself in binary form, without source code,
-under any propriatery license.
+under any proprietary license.
 
 Under what conditions may I distribute a filesystem that uses the raw
 ---------------------------------------------------------------------
@@ -303,7 +303,7 @@ write permissions for the owner?
 being to atomically obtain a read/write file handle and make the file
 read-only.  Unfortunately, this does not work very well in fuse, since
 you first get a mknod, and then an open call.  At the time of open,
-you can't distinguish easily wether this is the first open issued by
+you can't distinguish easily whether this is the first open issued by
 cp, or another process trying to write a read-only file.
 
 Defining the 'create' method solves this problem, however this
@@ -371,8 +371,8 @@ causes of this are (non-exhaustive)
     * You are running a 64 bit kernel but using a 32 bit libfuse. In this case
       you will need to install a 64 bit version of the FUSE userspace library,
       64 bit versions of all of the FUSE filesystems or language bindings that
-      link to it, and 64 bit versions of all of their dependancies. Your
-      distribution may provide 64 bit versions of the basic dependancies like
+      link to it, and 64 bit versions of all of their dependencies. Your
+      distribution may provide 64 bit versions of the basic dependencies like
       libc even in its 32 bit environment
 
 Misc
index ff8c253e3855c507803813634d1ab3c0f8e8cc1b..4736bbb5ed3e22938cd8d40a500148ea1f0f4363 100644 (file)
@@ -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
index 0c4c1d416928966a97d830f48a10c8995df564c9..db17fa61897866fb280d9daa3e24d0f0d74284bc 100644 (file)
@@ -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),
 };
index 8c08d779acba2d592afef3c2a714aa501c297bb1..add0a30894db5ca3bb7feebb463c42fbb3d766a8 100644 (file)
@@ -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
index 03291c361f5d220482db6e4b174b8dd4c453ae87..5f77bbf5628d443feb8c7792ea85f18c7bf228bc 100644 (file)
@@ -40,7 +40,7 @@ restart:
                        fuse_session_exit(se);
                        return 0;
                }
-               /* Errors occuring during normal operation: EINTR (read
+               /* Errors occurring during normal operation: EINTR (read
                   interrupted), EAGAIN (nonblocking I/O), ENODEV (filesystem
                   umounted) */
                if (err != EINTR && err != EAGAIN)
index 691e4fbda790e19ce1bdafbeae4e6659ab9c362b..b90c520e91a7c4e5994598afdc792acfe72e715e 100644 (file)
@@ -1290,7 +1290,7 @@ int main(int argc, char *argv[])
        if (!auto_unmount)
                return 0;
 
-       /* Decome a daemon and wait for the parent to exit or die.
+       /* Become a daemon and wait for the parent to exit or die.
           ie For the control socket to get closed. 
           btw We don't want to use daemon() function here because
           it forks and messes with the file descriptors. */