From f4c957c87849489d5b3e0f89a71d099a65f2b066 Mon Sep 17 00:00:00 2001 From: Mindy Batek Date: Fri, 25 Jul 2025 20:55:16 +0200 Subject: [PATCH 1/2] Fix typos --- ini.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ini.d b/ini.d index 4d7c689..4353687 100644 --- a/ini.d +++ b/ini.d @@ -77,7 +77,7 @@ Use [IniParser.isDestructive] to check for the operating mode. - The construct a non-destructive parser despite a mutable input data, + To construct a non-destructive parser despite mutable input data, specify `const(char)[]` as the value of the `string` template parameter. --- From c147de28e42a102f9d57c55feaadf8681d7cf5a2 Mon Sep 17 00:00:00 2001 From: Mindy Batek Date: Fri, 25 Jul 2025 20:55:46 +0200 Subject: [PATCH 2/2] Clarify instructions for instantiating a non-destructive parser for mutable data --- ini.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ini.d b/ini.d index 4353687..995158d 100644 --- a/ini.d +++ b/ini.d @@ -78,7 +78,7 @@ Use [IniParser.isDestructive] to check for the operating mode. To construct a non-destructive parser despite mutable input data, - specify `const(char)[]` as the value of the `string` template parameter. + pass type `const(char)[]` to the template parameter named `string`. --- char[] mutableInput = [ /* … */ ];