From 6b1abd1ae05833e0aedbd143bca7d4566f09b604 Mon Sep 17 00:00:00 2001 From: ToyB-Chan Date: Fri, 31 Jan 2025 16:50:03 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b8a49d..824fefb 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Ends with `.mini` i.e. `config.mini`. - Comments are denoted by `#` and may only appear on separate lines. - Cases are sensitive (for both names and values), except where otherwise noted. - The underlying size of any type is application specific. +- The parsing behavior of an illformed file is undefined. ## Supported Data Types @@ -43,7 +44,7 @@ The format supports the following data types: - `\t` for a tab - `\\` for a backslash - Strings may be empty. -- Example: `string = "My string` +- Example: `string = "My string"` - Example: `string = "Line 1\nLine 2"` - Example: `string = "Tab\tSeparated"` - Example: `string = "My \"escaped\" String"`