From 1969dc0e97283ba700b756b95e0b93499b91e3ca Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Thu, 24 Jul 2014 18:43:46 +0200 Subject: [PATCH] Space fix. --- source/dyaml/scanner.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dyaml/scanner.d b/source/dyaml/scanner.d index 7b570c3..04473de 100644 --- a/source/dyaml/scanner.d +++ b/source/dyaml/scanner.d @@ -739,7 +739,7 @@ final class Scanner } /// Check if the next token is DOCUMENT-START: ^ '---' (' '|'\n') - bool checkDocumentStart() @safe + bool checkDocumentStart() @safe { // Check one char first, then all 3, to prevent reading outside the buffer. return reader_.column == 0 &&