From f2cda9e799e99b90d950e2c864927fb9e37851af Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Sat, 26 Jul 2014 02:34:02 +0200 Subject: [PATCH] Style. --- source/dyaml/scanner.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/dyaml/scanner.d b/source/dyaml/scanner.d index be7f034..055290a 100644 --- a/source/dyaml/scanner.d +++ b/source/dyaml/scanner.d @@ -1228,9 +1228,9 @@ final class Scanner // loop) will never roll back data written in this if() block. if(reader_.column == indent && reader_.peek() != '\0') { - //Unfortunately, folding rules are ambiguous. + // Unfortunately, folding rules are ambiguous. - //This is the folding according to the specification: + // This is the folding according to the specification: if(style == ScalarStyle.Folded && lineBreak == "\n" && leadingNonSpace && !" \t"d.canFind(reader_.peek())) {