Skip to content

Commit

Permalink
Update capitalization to be consistent with rest of the section
Browse files Browse the repository at this point in the history
  • Loading branch information
banyaszvonat authored Dec 22, 2024
1 parent fe8992c commit 2fd8657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion categories/Introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ The exact representation a game uses will vary based on the compiler used, syste
Here are the most common data representations:
* **Single Character** (e.g the letter A) - Single byte ASCII
* **ASCII Text** (e.g the string 'Hello') - One Byte per character and normally ended with a Null Terminator **0x00**
* **UTF-8 Text** (e.g the string 'Hello') - A variable number of bytes (1 to 4) per character and normally ended with a Null Terminator **0x00**
* **UTF-8 Text** (e.g the string 'Hello') - A variable number of Bytes (1 to 4) per character and normally ended with a Null Terminator **0x00**
* **Boolean** - Either 1 Byte, 4 Bytes or occasionaly 1 Bit (along with 7 other boolean bits)
* **Integer/Short** - 2 Bytes (16Bit systems) or 4 Bytes (32Bit systems)
* **Long** - 4 Bytes
Expand Down

0 comments on commit 2fd8657

Please sign in to comment.