summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2020-04-05 15:14:59 +0200
committerAkim Demaille <akim.demaille@gmail.com>2020-04-05 19:14:39 +0200
commit04d62346f3c4b2a14b0d8df806515a9598a729ce (patch)
treee4c3b3d22e9d603ab60cb288613a0194e4e71160 /examples
parent9b70d69f39910fe3c63f58d972b1f0b144d0ea48 (diff)
downloadbison-04d62346f3c4b2a14b0d8df806515a9598a729ce.tar.gz
doc: refer to the token kind rather than the token type
* doc/bison.texi: Replace occurrences of "token type" with "token kind". Stop referring to the "macro definitions" of the token kinds, just name them "definitions".
Diffstat (limited to 'examples')
-rw-r--r--examples/c/bistromathic/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/bistromathic/parse.y b/examples/c/bistromathic/parse.y
index 233f8a6c..6082f80a 100644
--- a/examples/c/bistromathic/parse.y
+++ b/examples/c/bistromathic/parse.y
@@ -63,7 +63,7 @@
// with locations.
%locations
-// and acurate list of expected tokens.
+// and accurate list of expected tokens.
%define parse.lac full
// Generate the parser description file (calc.output).