Fix documentation typo in endians.nim (#21949)

This commit is contained in:
Simon Krauter
2023-05-28 14:40:37 -03:00
committed by GitHub
parent 7ebb042f79
commit 8c55e2999b

View File

@@ -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.