diff trunk/src/Settings.d @ 798:c24be8d4f6ab

Added documentation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 01 Mar 2008 02:53:06 +0100
parents 8e6fed11bb68
children
line wrap: on
line diff
--- a/trunk/src/Settings.d	Fri Feb 29 22:51:24 2008 +0100
+++ b/trunk/src/Settings.d	Sat Mar 01 02:53:06 2008 +0100
@@ -21,9 +21,9 @@
   string[] importPaths;
   /// Array of DDoc macro file paths.
   string[] ddocFilePaths;
-  string xmlMapFile = "xml_map.d";
-  string htmlMapFile = "html_map.d";
-  string lexerErrorFormat = "{0}({1},{2})L: {3}";
-  string parserErrorFormat = "{0}({1},{2})P: {3}";
-  string semanticErrorFormat = "{0}({1},{2})S: {3}";
+  string xmlMapFile = "xml_map.d"; /// XML map file.
+  string htmlMapFile = "html_map.d"; /// HTML map file.
+  string lexerErrorFormat = "{0}({1},{2})L: {3}"; /// Lexer error.
+  string parserErrorFormat = "{0}({1},{2})P: {3}"; /// Parser error.
+  string semanticErrorFormat = "{0}({1},{2})S: {3}"; /// Semantic error.
 }