summary refs log tree commit diff stats
path: root/lib/pure/endians.nim
diff options
context:
space:
mode:
authorSimon Krauter <trustable@disroot.org>2023-05-28 14:40:37 -0300
committerGitHub <noreply@github.com>2023-05-28 19:40:37 +0200
commit8c55e2999b27e3f088fca2e61739b33498fb07ef (patch)
tree1f1320b0e68c363dde7f4e736dd9e962d734a8a1 /lib/pure/endians.nim
parent7ebb042f79b6c796e08e6ff89eaba3a9a67f9d6d (diff)
downloadNim-8c55e2999b27e3f088fca2e61739b33498fb07ef.tar.gz
Fix documentation typo in endians.nim (#21949)
Diffstat (limited to 'lib/pure/endians.nim')
-rw-r--r--lib/pure/endians.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/endians.nim b/lib/pure/endians.nim
index a0dc97c1d..4c1d45ae5 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.