From 11b923044f9b833f0088671320d15f35aafb94ad Mon Sep 17 00:00:00 2001 From: mah_boi <61310813+MahBoiDeveloper@users.noreply.github.com> Date: Tue, 26 Nov 2024 17:49:14 +0300 Subject: [PATCH] Update Docs/INISystem.md Co-authored-by: Kerbiter --- Docs/INISystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/INISystem.md b/Docs/INISystem.md index 696f2ac35..f61a7607e 100644 --- a/Docs/INISystem.md +++ b/Docs/INISystem.md @@ -26,7 +26,7 @@ _NOTE: Constants can only be used in [dynamic control properties](#dynamic-contr - The `boolean` string value parses as `true` if it contains one of these symbol as first character: `t`, `y`, `1`, `a`, `e`; and if first symbol is `n`, `f`, `0`, then it parses as `false`. - The `integer` type is actually `System.Int32`. - The `float` type is actually `System.Single`. -- The `N integers` or `N floats` is a `integer` or `float` type values repeated `N` times, but separated with `,` character without spaces e.g., `0,0` or `0.0,0.0` respectively. +- The `N integers` or `N floats` is a `integer` or `float` type values repeated `N` times, but separated with `,` character without spaces e.g., `0,0` or `0.0,0.0` for `2 integers` or `2 floats` respectively. - The `comma-separated strings` is a string, but separated with `,` character without spaces e.g., `one,two,three`.