From 3c7761cbe86966fd3b527c5b8e6b826e546ea2e0 Mon Sep 17 00:00:00 2001 From: coderhxjin <146945673+coderhxjin@users.noreply.github.com> Date: Tue, 7 Jan 2025 00:32:06 +0800 Subject: [PATCH] fix: content typo fix typo: endianess->endianness Add two articles(one from MDN; another from freecodecamp) --- .../content/endianess@vjMqqFsTxSjaiYxmliwLi.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/computer-science/content/endianess@vjMqqFsTxSjaiYxmliwLi.md b/src/data/roadmaps/computer-science/content/endianess@vjMqqFsTxSjaiYxmliwLi.md index ae5995abe..10500e058 100644 --- a/src/data/roadmaps/computer-science/content/endianess@vjMqqFsTxSjaiYxmliwLi.md +++ b/src/data/roadmaps/computer-science/content/endianess@vjMqqFsTxSjaiYxmliwLi.md @@ -1,8 +1,10 @@ -# Endianess +# Endianness -Endianess is the order in which bytes are stored in memory. The two most common types of endianess are big endian and little endian. Big endian stores the most significant byte first, while little endian stores the least significant byte first. +Endianness is the order in which bytes are stored in memory. The two most common types of endianness are big endian and little endian. Big endian stores the most significant byte first, while little endian stores the least significant byte first. Visit the following resources to learn more: +- [@article@Endianness](https://developer.mozilla.org/en-US/docs/Glossary/Endianness) +- [@article@Big-Endian vs Little-Endian Explained with Examples](https://www.freecodecamp.org/news/what-is-endianness-big-endian-vs-little-endian/) - [@video@Big Endian vs Little Endian.mp4](https://www.youtube.com/watch?v=JrNF0KRAlyo) - [@video@Endianness Explained With an Egg - Computerphile](https://www.youtube.com/watch?v=NcaiHcBvDR4)