From 9fe84bf72970069a64241cdbc701f251e2d637b1 Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Thu, 24 Jul 2014 23:22:26 +0200 Subject: [PATCH] Style fixes. --- source/dyaml/scanner.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/dyaml/scanner.d b/source/dyaml/scanner.d index cc3d226..5abef2e 100644 --- a/source/dyaml/scanner.d +++ b/source/dyaml/scanner.d @@ -706,16 +706,16 @@ final class Scanner tokens_.push(scanBlockScalar(style)); } - ///Aliases to add literal or folded block scalar. + /// Aliases to add literal or folded block scalar. alias fetchBlockScalar!(ScalarStyle.Literal) fetchLiteral; alias fetchBlockScalar!(ScalarStyle.Folded) fetchFolded; /// Add quoted flow SCALAR token. void fetchFlowScalar(ScalarStyle quotes)() @safe { - //A flow scalar could be a simple key. + // A flow scalar could be a simple key. savePossibleSimpleKey(); - //No simple keys after flow scalars. + // No simple keys after flow scalars. allowSimpleKey_ = false; // Scan and add SCALAR. @@ -724,7 +724,7 @@ final class Scanner tokens_.push(scalar); } - ///Aliases to add single or double quoted block scalar. + /// Aliases to add single or double quoted block scalar. alias fetchFlowScalar!(ScalarStyle.SingleQuoted) fetchSingle; alias fetchFlowScalar!(ScalarStyle.DoubleQuoted) fetchDouble;