diff --git a/initial.d b/initial.d index 02e8b19..a338af3 100644 --- a/initial.d +++ b/initial.d @@ -180,7 +180,7 @@ struct INIUnit void opIndexAssign(string v, string k) { - this[defaultSection][k] = v; + sections[defaultSection][k] = v; } /++ @@ -189,7 +189,7 @@ struct INIUnit void opIndexAssign(INISection v, string sect) { - this[sect] = v; + sections[sect] = v; } }