aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/parser.h b/src/parser.h
index 363478c..31be1c8 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -9,10 +9,10 @@
#include "types.h"
enum {
- /* The first four AST tokens are declarations. A declaration is any
- token T for which ‘T <= _AST_DECLS_END’ holds. Declarations can
- also be made public by using the ‘pub’ keyword, and you can tell
- if a declaration is public by if the LSB is set. */
+ /* The AST tokens are declarations. A declaration is any token T for
+ which ‘T <= _AST_DECLS_END’ holds. Declarations can also be made
+ public by using the ‘pub’ keyword, and you can tell if a
+ declaration is public by if the LSB is set. */
/* Variable declaration, lhs and rhs may be unused
‘x := rhs’; aux[lhs].decl */