From 5a774f0f24b9de89d9239d42b92af1bb410c8f2a Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 16:12:49 -0800 Subject: [PATCH] Update Primitive Data Types --- Primitive-Data-Types.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Primitive-Data-Types.md b/Primitive-Data-Types.md index 3ba0a7d..9ef81ea 100644 --- a/Primitive-Data-Types.md +++ b/Primitive-Data-Types.md @@ -8,7 +8,7 @@ | Primitives | Description | | --- | --- | -| **Integers** | +| _**Integers**_ | | UInt_64 | 64-Bit Unsigned Integer | | UInt_32 | 32-Bit Unsigned Integer | | UInt_16 | 16-Bit Unsigned Integer | @@ -17,15 +17,15 @@ | SInt_32 | 32-Bit Signed Integer | | SInt_16 | 16-Bit Signed Integer | | SInt_8 | 8-Bit Signed Integer | -| **Floating Points** | +| _**Floating Points**_ | | float | A 32-Bit single precision floating point number | | double | A 64-Bit double precision floating point number | | long double | A 80-Bit extended precision floating-point number | -| **Character** | +| _**Characters**_ | | Char_32 | UTF_32 Character | | Char_16 | UTF_16 Character | | Char_8 | UTF_8 Character | -| **Misc** | +| _**Misc**_ | | Byte | A single byte of data, essentially just a UInt_8 | # Related Macros