From 3919f55cfc58625dbaad0506a2d569799b8eee50 Mon Sep 17 00:00:00 2001 From: ToyB-Chan Date: Fri, 31 Jan 2025 23:46:32 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 472ef9f..b7ba1b6 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ The format supports the following data types: ### Integer - Defined as a sequence of digits (`0-9`). -- May be suffixed with `x` to be interpreted as hexadecimal (`0-9`, `a-f`, `A-F`). +- May be suffixed with `h` to be interpreted as hexadecimal (`0-9`, `a-f`, `A-F`). - May be suffixed with `b` to be interpreted as binary (`0-1`). - May contain underscores (`_`) for better readability. - Example: `value = 5` -- Example: `hexValue = FA8x` +- Example: `hexValue = FA8h` - Example: `binValue = 0010010b` - Example: `anotherDec = 1_000_375` @@ -91,7 +91,7 @@ myBool = false [MySection.MySubsection] myFloat = 1.065f myFloat2 = 1e18f -hexValue = FA8x +hexValue = FA8h [MySection.MySubsection.AnotherSubsection] binValue = 0010010b