From 33595b7f87f7f11aa7610640f1f93205a6ef8b1a Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 8 Feb 2025 02:17:24 +0100 Subject: [PATCH] Fix minor issues --- ini.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ini.d b/ini.d index 4e2ec6a..a4fee84 100644 --- a/ini.d +++ b/ini.d @@ -20,13 +20,13 @@ enum IniDialect : ulong { lineComments = 0b_0000_0000_0000_0001, inlineComments = 0b_0000_0000_0000_0011, hashLineComments = 0b_0000_0000_0000_0100, - hashInLineComments = 0b_0000_0000_0000_1100, + hashInlineComments = 0b_0000_0000_0000_1100, escapeSequences = 0b_0000_0000_0001_0000, lineFolding = 0b_0000_0000_0010_0000, quotedStrings = 0b_0000_0000_0100_0000, arrays = 0b_0000_0000_1000_0000, colonKeys = 0b_0000_0001_0000_0000, - defaults = (lineComments | quotedStrings), + defaults = (lineComments | quotedStrings), } //dfmt on @@ -97,7 +97,7 @@ private enum LocationState { +/ struct IniParser( IniDialect dialect = IniDialect.defaults, - string = immutable(char)[] + string = immutable(char)[], ) if (isCompatibleString!string) { public { @@ -300,7 +300,7 @@ struct IniParser( ? Result.end : Result.regular; case '#': - if (dialect.hasFeature(Dialect.hashInLineComments)) { + if (dialect.hasFeature(Dialect.hashInlineComments)) { return (inQuotedString) ? Result.regular : Result.end; } else { @@ -447,7 +447,7 @@ struct IniParser( } case '#': { - static if (dialect.hasFeature(Dialect.hashInLineComments)) { + static if (dialect.hasFeature(Dialect.hashInlineComments)) { return this.lexComment(); } else static if (dialect.hasFeature(Dialect.hashLineComments)) { if (this.isAtStartOfLineOrEquivalent) {