diff trunk/src/dil/doc/Parser.d @ 745:7299159c3a19

Improved DDocParser.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 09 Feb 2008 23:23:01 +0100
parents 35184354a502
children 00f872d949ea
line wrap: on
line diff
--- a/trunk/src/dil/doc/Parser.d	Sat Feb 09 22:54:31 2008 +0100
+++ b/trunk/src/dil/doc/Parser.d	Sat Feb 09 23:23:01 2008 +0100
@@ -63,7 +63,7 @@
     // B = some text
     // ^- begin and end point to B (or to this.textEnd in the 2nd case.)
     if (begin is end)
-      return null;
+      return "";
     // Remove trailing whitespace.
     while (isspace(*--end) || *end == '\n')
     {}