From 2c61ff8ab8af0412c40c1891b35f0675f06b7f35 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 8 Feb 2025 03:13:59 +0100 Subject: [PATCH] Remove usage of shortened alias from example --- ini.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ini.d b/ini.d index 3a585f7..5106a2d 100644 --- a/ini.d +++ b/ini.d @@ -473,7 +473,7 @@ oachkatzl = schwoaf ;try pronouncing that `; // Combine feature flags to build the required dialect. - const myDialect = (Dialect.defaults | Dialect.inlineComments); + const myDialect = (IniDialect.defaults | IniDialect.inlineComments); // Instantiate a new parser and supply our document string. auto parser = IniParser!(myDialect)(rawIniDocument);