diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-07-06 19:37:00 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-06 19:37:00 +0200 | 
| commit | 144a87155e86d7eaf6551d342725935101ce63a9 (patch) | |
| tree | 258d612dc6c42e4495901a2f8b793633b47eddf8 | |
| parent | 0da3c2a3d20d2b76093b50da7bbfa5efc1ce56d4 (diff) | |
Correct some fake news
| -rw-r--r-- | src/parser.h | 8 | 
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 */  |