We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a45b9 commit 219ab9fCopy full SHA for 219ab9f
1 file changed
docs/reference/buffer/endian.md
@@ -1,4 +1,5 @@
1
## Endian
2
-There are 2 endian's for grouping bytes, which are little and big endian.
3
-**Little Endian** groups bytes by the least significant byte at the lowest address.
4
-**Big Endian** stores the most significant byte at the lowest address, it is meant for human readability.
+An endian determines the order in which bytes are organized to represent large numbers.
+There are only 2 ways of ordering, which are little and big endian.
+**Little Endian (LE)** groups bytes by the least significant byte at the lowest address.
5
+**Big Endian (BE)** stores the most significant byte at the lowest address, it is meant for human readability.
0 commit comments