Clarify instructions for instantiating a non-destructive parser for mutable data

This commit is contained in:
Mindy Batek 2025-07-25 20:55:46 +02:00
parent f4c957c878
commit c147de28e4
1 changed files with 1 additions and 1 deletions

2
ini.d
View File

@ -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 = [ /* … */ ];