From 7fa53704c5a66b6335b3cf941cba45836ba0d62e Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Sat, 19 Jul 2014 01:58:48 +0200 Subject: [PATCH] Doc fix in constructor.d --- source/dyaml/constructor.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;