Doc fix in constructor.d

This commit is contained in:
Ferdinand Majerech 2014-07-19 01:58:48 +02:00
parent 28979baa6c
commit 7fa53704c5

View file

@ -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;