diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-10-07 13:27:04 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-10-07 13:27:04 +0200 |
commit | 3b47afacf5d6443b3460cd979abfff6c71a4ec3d (patch) | |
tree | da66604611c937c0498eb167b9506b54d7df437e /include/sqfs/data_writer.h | |
parent | a68eb730558fb90bc8d9524564d8f9e58f3ccac1 (diff) |
Fix spelling of "align"
Before the misspelled version has a chance to become stable API.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/data_writer.h')
-rw-r--r-- | include/sqfs/data_writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sqfs/data_writer.h b/include/sqfs/data_writer.h index 4623493..7b6ee0f 100644 --- a/include/sqfs/data_writer.h +++ b/include/sqfs/data_writer.h @@ -74,7 +74,7 @@ struct sqfs_block_hooks_t { * @brief Gets called before writing a block to disk. * * If this is not NULL, it gets called before a block is written to - * disk. If the block has the @ref SQFS_BLK_ALLIGN flag set, the + * disk. If the block has the @ref SQFS_BLK_ALIGN flag set, the * function is called before padding the file. * * The function may modify the block itself or write data to the file. @@ -91,7 +91,7 @@ struct sqfs_block_hooks_t { * @brief Gets called after writing a block to disk. * * If this is not NULL, it gets called after a block is written to - * disk. If the block has the @ref SQFS_BLK_ALLIGN flag set, the + * disk. If the block has the @ref SQFS_BLK_ALIGN flag set, the * function is called before padding the file. * * Modifying the block is rather pointless, but the function may @@ -167,7 +167,7 @@ extern "C" { * trying to add more, enqueueing blocks until the in-flight * block count drops below the threshold. * @param devblksz File can optionally be allgined to device block size. This - * specifies the desired allignment. + * specifies the desired alignment. * @param file The output file to write the finished blocks to. * * @return A pointer to a data writer object on success, NULL on allocation |