From 185072dc8c74837385cb7ec108f591a0d1261577 Mon Sep 17 00:00:00 2001 From: ToyB-Chan Date: Fri, 31 Jan 2025 07:02:03 +0100 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 54b017a..e575be0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ - - # mini-file-format Minimalized ini format with concrete format rules. Meant to be easily read and easily parsed. @@ -18,6 +16,7 @@ Ends with `.mini` i.e. `config.mini`. - Spaces outside of strings are ignored. - Empty lines are ignored - Comments are denoted by `#` and may only appear on separate lines. +- Except where otherwise noted, cases are sensitive. ## Supported Data Types @@ -105,6 +104,6 @@ myArray2 = [[5, 6], 1] | Technically same as above, dimensions must match myString = 'Hello' | Strings may only be encapsulated by ". my-value = 5 | Invalid character in key. -[MyOtherSection.Subsection] | "MyOtherSection" is not defined +[MyOtherSection.Subsection] | "MyOtherSection" is not defined. myValue = 16 # comment | Inline comments are not allowed. ```