Fix spelling mistakes using codespell
This commit corrects various spelling mistakes throughout the
repository. The corrections were made automatically using `codespell`[1]
tool.
[1]: https://github.com/codespell-project/codespell
Change-Id: I153217f4ae8454e3546a59da9fcfe3f83fd04b39
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/include/pattern.hpp b/include/pattern.hpp
index 7e9b126..3a15dff 100644
--- a/include/pattern.hpp
+++ b/include/pattern.hpp
@@ -23,7 +23,7 @@
*/
Pattern(std::string_view inDevPath) : Erase(inDevPath) {}
- /** @brief writes an uncompressible random pattern to the drive, using
+ /** @brief writes an incompressible random pattern to the drive, using
* default parameters. It also throws errors accordingly.
*/
void writePattern()
@@ -33,7 +33,7 @@
writePattern(util::findSizeOfBlockDevice(devPath), fd);
}
- /** @brief writes an uncompressible random pattern to the drive
+ /** @brief writes an incompressible random pattern to the drive
* and throws errors accordingly.
*
* @param[in] bytes - Size of the block device
@@ -41,7 +41,7 @@
*/
void writePattern(uint64_t driveSize, Fd& fd);
- /** @brief verifies the uncompressible random pattern is on the drive, using
+ /** @brief verifies the incompressible random pattern is on the drive, using
* default parameters. It also throws errors accordingly.
*/
void verifyPattern()
@@ -51,7 +51,7 @@
verifyPattern(util::findSizeOfBlockDevice(devPath), fd);
}
- /** @brief verifies the uncompressible random pattern is on the drive
+ /** @brief verifies the incompressible random pattern is on the drive
* and throws errors accordingly.
*
* @param[in] bytes - Size of the block device