Fixed spelling / typos (from PowerDNS:codespell)
diff --git a/library/net.c b/library/net.c
index 8eeabb9..2ab12df 100644
--- a/library/net.c
+++ b/library/net.c
@@ -93,7 +93,7 @@
 /*
  * htons() is not always available.
  * By default go for LITTLE_ENDIAN variant. Otherwise hope for _BYTE_ORDER and __BIG_ENDIAN
- * to help determine endianess.
+ * to help determine endianness.
  */
 #if defined(__BYTE_ORDER) && defined(__BIG_ENDIAN) && __BYTE_ORDER == __BIG_ENDIAN
 #define POLARSSL_HTONS(n) (n)