diff options
author | Benjamin Drung <benjamin.drung@cloud.ionos.com> | 2019-12-16 16:58:56 +0100 |
---|---|---|
committer | David Oberhollenzer <goliath@infraroot.at> | 2019-12-19 12:24:12 +0100 |
commit | 20ceb65fbc728c6a681ec85ee2a94e93a9e7df0c (patch) | |
tree | 0e8af4d2492c78f9fa8d2ba4c4904b3a148d10e4 /include/sqfs | |
parent | 19b98cf450220b742987e7f0599ae284e93f8e54 (diff) |
Fix spelling mistakes found by lintian
Signed-off-by: Benjamin Drung <benjamin.drung@cloud.ionos.com>
Diffstat (limited to 'include/sqfs')
-rw-r--r-- | include/sqfs/dir_reader.h | 6 | ||||
-rw-r--r-- | include/sqfs/dir_writer.h | 2 | ||||
-rw-r--r-- | include/sqfs/xattr.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/sqfs/dir_reader.h b/include/sqfs/dir_reader.h index 389da6b..8071ef4 100644 --- a/include/sqfs/dir_reader.h +++ b/include/sqfs/dir_reader.h @@ -33,7 +33,7 @@ * * @brief Abstracts reading of directory entries * - * SquashFS stores directory listings and inode structures seperated from + * SquashFS stores directory listings and inode structures separated from * each other in meta data blocks. * * The sqfs_dir_reader_t abstracts access to the filesystem tree in a SquashFS @@ -275,7 +275,7 @@ SQFS_API int sqfs_dir_reader_get_root_inode(sqfs_dir_reader_t *rd, * * @param rd A pointer to a directory reader. * @param path A path to resolve into an inode. Forward or backward slashes can - * be used to seperate path components. Resolving '.' or '..' is + * be used to separate path components. Resolving '.' or '..' is * not supported. * @param out Returns a pointer to a generic inode that can be freed with a * single free call. @@ -298,7 +298,7 @@ SQFS_API int sqfs_dir_reader_find_by_path(sqfs_dir_reader_t *rd, * * @param rd A pointer to a directory reader. * @param path A path to resolve into an inode. Forward or backward slashes can - * be used to seperate path components. Resolving '.' or '..' is + * be used to separate path components. Resolving '.' or '..' is * not supported. Can be set to NULL to get the root inode. * @param flags A combination of @ref E_SQFS_TREE_FILTER_FLAGS flags. * @param out Returns the top most tree node. diff --git a/include/sqfs/dir_writer.h b/include/sqfs/dir_writer.h index c390050..05d054b 100644 --- a/include/sqfs/dir_writer.h +++ b/include/sqfs/dir_writer.h @@ -33,7 +33,7 @@ * * @brief Abstracts generating of directory entries * - * SquashFS stores directory entries and inodes seperated from each other. The + * SquashFS stores directory entries and inodes separated from each other. The * inodes are stored in a series of meta data blocks before another series of * meta data blocks that contain the directory entries. Directory inodes point * to meta data block (and offset) where its contents are listed and the diff --git a/include/sqfs/xattr.h b/include/sqfs/xattr.h index f2a87d3..c34f920 100644 --- a/include/sqfs/xattr.h +++ b/include/sqfs/xattr.h @@ -159,7 +159,7 @@ extern "C" { * prefix of the key string and storing an enumerator instead to save memory. * * This function takes an @ref E_SQFS_XATTR_TYPE identifier and returns the - * coresponding prefix string, including the '.' at the end that seperates + * coresponding prefix string, including the '.' at the end that separates * the prefix from the rest of the key. */ SQFS_API const char *sqfs_get_xattr_prefix(E_SQFS_XATTR_TYPE id); |