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: Iae81201889d1bb4ca324243b863948cb60420ae7
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/vpd-manager/manager.cpp b/vpd-manager/manager.cpp
index 767ea0b..7b5ae96 100644
--- a/vpd-manager/manager.cpp
+++ b/vpd-manager/manager.cpp
@@ -273,7 +273,7 @@
// detect if essential frus are present in the system.
checkEssentialFrus();
- // check and perfrom recollection for FRUs replaceable at
+ // check and perform recollection for FRUs replaceable at
// standby.
performVPDRecollection();
return;
@@ -599,12 +599,12 @@
// required.
if (prePostActionRequired)
{
- // The sleep of 1sec is sliced up in 10 retries of 10 miliseconds
+ // The sleep of 1sec is sliced up in 10 retries of 10 milliseconds
// each.
for (auto retryCounter = VALUE_0; retryCounter <= VALUE_10;
retryCounter++)
{
- // sleep for 10 milisecond
+ // sleep for 10 millisecond
if (usleep(VALUE_100000) != VALUE_0)
{
std::cout << "Sleep failed before accessing the file"