diff options
author | drh <> | 2021-03-28 20:44:01 +0000 |
---|---|---|
committer | drh <> | 2021-03-28 20:44:01 +0000 |
commit | 9cffb0ffb9b393e1231496d88a3d488e0f877183 (patch) | |
tree | d3ea078e236eb5bdee8a3b9308b009f715761b74 /tool/lemon.c | |
parent | 5e23ae500b916a5bb52f35769a391935f62efcfa (diff) | |
download | sqlite-9cffb0ffb9b393e1231496d88a3d488e0f877183.tar.gz sqlite-9cffb0ffb9b393e1231496d88a3d488e0f877183.zip |
Document the "%token" directive for Lemon. This directive has been in place
for a while, but was previously undocumented.
FossilOrigin-Name: 36624d3740a8d095eee061bcc5037deabddb88a53444ec1a956a8af7684efa43
Diffstat (limited to 'tool/lemon.c')
-rw-r--r-- | tool/lemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lemon.c b/tool/lemon.c index 06ba1be2b..75fc7aa2f 100644 --- a/tool/lemon.c +++ b/tool/lemon.c @@ -2708,7 +2708,7 @@ static void parseonetoken(struct pstate *psp) ** in order to control their assigned integer number. The number for ** each token is assigned when it is first seen. So by including ** - ** %token ONE TWO THREE + ** %token ONE TWO THREE. ** ** early in the grammar file, that assigns small consecutive values ** to each of the tokens ONE TWO and THREE. |