From de88c9a6eba4afd6a672d82aa6b962401427e021 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 23 Oct 2019 21:18:08 +0200 Subject: [PATCH] pkg/nanocbor: fix typos --- pkg/nanocbor/include/nanocbor/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/nanocbor/include/nanocbor/config.h b/pkg/nanocbor/include/nanocbor/config.h index 045529fb3d..5931775be3 100644 --- a/pkg/nanocbor/include/nanocbor/config.h +++ b/pkg/nanocbor/include/nanocbor/config.h @@ -37,7 +37,7 @@ extern "C" { /** * @brief call providing htonll or be64toh or equivalent functionality * - * must take a uint64_t big endian and return it in host endianess + * must take a uint64_t big endian and return it in host endianness */ #ifndef NANOCBOR_BE64TOH_FUNC #define NANOCBOR_BE64TOH_FUNC(be) (ntohll(be)) @@ -46,7 +46,7 @@ extern "C" { /** * @brief call providing htonll or htobe64 or equivalent functionality * - * must take a uint64_t in host endianess and return the big endian value + * must take a uint64_t in host endianness and return the big endian value */ #ifndef NANOCBOR_HTOBE64_FUNC #define NANOCBOR_HTOBE64_FUNC(be) (htonll(be)) @@ -55,7 +55,7 @@ extern "C" { /** * @brief call providing htonll or htobe32 or equivalent functionality * - * must take a uint32_t in host endianess and return the big endian value + * must take a uint32_t in host endianness and return the big endian value */ #ifndef NANOCBOR_HTOBE32_FUNC #define NANOCBOR_HTOBE32_FUNC(he) htonl(he)