Showing with 1 addition and 1 deletion.
  1. +1 −1 std/container/rbtree.d
2 changes: 1 addition & 1 deletion std/container/rbtree.d
Original file line number Diff line number Diff line change
Expand Up @@ -1715,7 +1715,7 @@ assert(equal(rbt[], [5]));
element type can be formatted. Otherwise, the default toString from
Object is used.
*/
static if(is(typeof((){FormatSpec!(char) fmt; formatValue((const(char)[]) {}, ConstRange.init, fmt);})))
static if (is(typeof((){FormatSpec!(char) fmt; formatValue((const(char)[]) {}, ConstRange.init, fmt);})))
{
void toString(scope void delegate(const(char)[]) sink, FormatSpec!char fmt) const {
sink("RedBlackTree(");
Expand Down