diff trunk/src/dil/lexer/TokensEnum.d @ 798:c24be8d4f6ab

Added documentation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 01 Mar 2008 02:53:06 +0100
parents d887184efb3c
children
line wrap: on
line diff
--- a/trunk/src/dil/lexer/TokensEnum.d	Fri Feb 29 22:51:24 2008 +0100
+++ b/trunk/src/dil/lexer/TokensEnum.d	Sat Mar 01 02:53:06 2008 +0100
@@ -6,6 +6,7 @@
 
 import common;
 
+/// Enumeration of token kinds.
 enum TOK : ushort
 {
   Invalid,
@@ -120,7 +121,7 @@
 alias TOK.FILE SpecialTokensBegin;
 alias TOK.VERSION SpecialTokensEnd;
 
-/// A table mapping each TOK to a string.
+/// A table that maps each token kind to a string.
 const string[TOK.MAX] tokToString = [
   "Invalid",