diff --git a/source/dyaml/constructor.d b/source/dyaml/constructor.d index 723318c..617a16c 100644 --- a/source/dyaml/constructor.d +++ b/source/dyaml/constructor.d @@ -773,9 +773,9 @@ Node[] constructSet(ref Node node) { auto pairs = node.as!(Node.Pair[]); - //In future, the map here should be replaced with something with deterministic - //memory allocation if possible. - //Detect duplicates. + // In future, the map here should be replaced with something with deterministic + // memory allocation if possible. + // Detect duplicates. ubyte[Node] map; scope(exit){clear(map);} Node[] nodes;