diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-10-11 10:12:08 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-10-11 10:12:08 +0000 |
commit | b75d4b9bc09ff071b2dfcdf632a7382733e7fa8b (patch) | |
tree | 9db2134cbeec178da7684fe67136d06992798e0f /include | |
parent | 7f54fb491cd1250fdb0f9c7d1acb2a1408c2030c (diff) | |
download | libfuse-b75d4b9bc09ff071b2dfcdf632a7382733e7fa8b.tar.gz |
spelling fix
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse.h | 14 | ||||
-rw-r--r-- | include/fuse_lowlevel.h | 6 |
2 files changed, 10 insertions, 10 deletions
diff --git a/include/fuse.h b/include/fuse.h index d16135e..9739f26 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -127,10 +127,10 @@ struct fuse_operations { /** File open operation * - * No creation, or trunctation flags (O_CREAT, O_EXCL, O_TRUNC) + * No creation, or truncation flags (O_CREAT, O_EXCL, O_TRUNC) * will be passed to open(). Open should check if the operation * is permitted for the given flags. Optionally open may also - * return an arbitary filehandle in the fuse_file_info structure, + * return an arbitrary filehandle in the fuse_file_info structure, * which will be passed to all file operations. * * Changed in version 2.2 @@ -185,7 +185,7 @@ struct fuse_operations { * should be treated equally. Multiple write-flush sequences are * relatively rare, so this shouldn't be a problem. * - * Filesystems shouldn't assume that flush will allways be called + * Filesystems shouldn't assume that flush will always be called * after some writes, or that if will be called at all. * * Changed in version 2.2 @@ -376,11 +376,11 @@ void fuse_destroy(struct fuse *f); /** * FUSE event loop. * - * Requests from the kernel are processed, and the apropriate + * Requests from the kernel are processed, and the appropriate * operations are called. * * @param f the FUSE handle - * @return 0 if no error occured, -1 otherwise + * @return 0 if no error occurred, -1 otherwise */ int fuse_loop(struct fuse *f); @@ -394,7 +394,7 @@ void fuse_exit(struct fuse *f); /** * FUSE event loop with multiple threads * - * Requests from the kernel are processed, and the apropriate + * Requests from the kernel are processed, and the appropriate * operations are called. Request are processed in parallel by * distributing them between multiple threads. * @@ -402,7 +402,7 @@ void fuse_exit(struct fuse *f); * the application. * * @param f the FUSE handle - * @return 0 if no error occured, -1 otherwise + * @return 0 if no error occurred, -1 otherwise */ int fuse_loop_mt(struct fuse *f); diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 93712f5..dee4325 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -412,7 +412,7 @@ struct fuse_lowlevel_ops { * Since file descriptors can be duplicated (dup, dup2, fork), for * one open call there may be many flush calls. * - * Filesystems shouldn't assume that flush will allways be called + * Filesystems shouldn't assume that flush will always be called * after some writes, or that if will be called at all. * * fi->fh will contain the value set by the open method, or will @@ -613,7 +613,7 @@ struct fuse_lowlevel_ops { * If size is zero, the total size of the attribute list should be * sent with fuse_reply_xattr. * - * If the size is non-zero, and the null charater separated + * If the size is non-zero, and the null character separated * attribute list fits in the buffer, the list should be sent with * fuse_reply_buf. * @@ -991,7 +991,7 @@ int fuse_session_exited(struct fuse_session *se); int fuse_session_loop(struct fuse_session *se); /** - * Enter a muli-threaded event loop + * Enter a multi-threaded event loop * * @param se the session * @return 0 on success, -1 on error |