From 8c55e2999b27e3f088fca2e61739b33498fb07ef Mon Sep 17 00:00:00 2001 From: Simon Krauter Date: Sun, 28 May 2023 14:40:37 -0300 Subject: [PATCH] Fix documentation typo in endians.nim (#21949) --- lib/pure/endians.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/endians.nim b/lib/pure/endians.nim index a0dc97c1da..4c1d45ae5e 100644 --- a/lib/pure/endians.nim +++ b/lib/pure/endians.nim @@ -10,7 +10,7 @@ ## This module contains helpers that deal with different byte orders ## (`endian`:idx:). ## -## Endianess is the order of bytes of a value in memory. Big-endian means that +## Endianness is the order of bytes of a value in memory. Big-endian means that ## the most significant byte is stored at the smallest memory address, ## while little endian means that the least-significant byte is stored ## at the smallest address. See also https://en.wikipedia.org/wiki/Endianness.