summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManojkiran Eda <manojkiran.eda@gmail.com>2024-06-18 15:31:46 +0300
committerGunnar Mills <gunnar@gmills.xyz>2024-06-18 19:15:30 +0300
commitefff2b5d6e6479a9875108c2c4a54e8aa4e3a270 (patch)
tree2eb9fee2997dc7cfaf69b022a343e84300fa18b6
parentf2a8e57ede74a8252100b2281e3f4d170aa69391 (diff)
downloadbmcweb-efff2b5d6e6479a9875108c2c4a54e8aa4e3a270.tar.xz
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: I8751c35ad7246f73ec2e7cd4a04488c25bde3f39 Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com> Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
-rw-r--r--http/http_connection.hpp2
-rw-r--r--http/routing.hpp2
-rw-r--r--redfish-core/lib/systems.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/http/http_connection.hpp b/http/http_connection.hpp
index fdbecd1f2e..fe015f9341 100644
--- a/http/http_connection.hpp
+++ b/http/http_connection.hpp
@@ -424,7 +424,7 @@ class Connection :
{
if (!parser)
{
- BMCWEB_LOG_CRITICAL("Paser was null");
+ BMCWEB_LOG_CRITICAL("Parser was null");
return false;
}
const boost::optional<uint64_t> contentLength =
diff --git a/http/routing.hpp b/http/routing.hpp
index 4dd31321d5..5205a5b229 100644
--- a/http/routing.hpp
+++ b/http/routing.hpp
@@ -272,7 +272,7 @@ class Trie
continue;
}
- BMCWEB_LOG_CRITICAL("Cant find tag for {}", urlIn);
+ BMCWEB_LOG_CRITICAL("Can't find tag for {}", urlIn);
return;
}
std::string piece(&c, 1);
diff --git a/redfish-core/lib/systems.hpp b/redfish-core/lib/systems.hpp
index 2687ecf9f9..59621cf4f7 100644
--- a/redfish-core/lib/systems.hpp
+++ b/redfish-core/lib/systems.hpp
@@ -3289,7 +3289,7 @@ inline void handleSystemCollectionResetActionHead(
* @param[in] dbusAllowedHostTran The allowed host transition on dbus
* @param[out] allowableValues The translated host transition(s)
*
- * @return Emplaces correpsonding Redfish translated value(s) in
+ * @return Emplaces corresponding Redfish translated value(s) in
* allowableValues. If translation not possible, does nothing to
* allowableValues.
*/