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: I16082f7e664541e98fa1cae2b2bcce59dd9cb250
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/common/types.hpp b/common/types.hpp
index 52f06ab..8e0c4c2 100644
--- a/common/types.hpp
+++ b/common/types.hpp
@@ -22,7 +22,7 @@
using Command = uint8_t;
/** @brief MCTP Endpoint Medium type in string
- * Reseverd for future puspose
+ * Reserved for future purpose
*/
using MctpMedium = std::string;
@@ -32,14 +32,15 @@
using NetworkId = uint32_t;
/** @brief Type definition of MCTP interface information between two endpoints.
- * eid : Endpoint EID in byte. Defind to match with MCTP D-Bus Interface
+ * eid : Endpoint EID in byte. Defined to match with MCTP D-Bus
+ * interface
* UUID : Endpoint UUID which is used to different the endpoints
* MctpMedium: Endpoint MCTP Medium info (Resersed)
* NetworkId: MCTP network index
*/
using MctpInfo = std::tuple<eid, UUID, MctpMedium, NetworkId>;
-/** @brief Type defind of list of MCTP interface information
+/** @brief Type defined for list of MCTP interface information
*/
using MctpInfos = std::vector<MctpInfo>;