diff options
| author | Jim Fehrle | 2020-09-27 00:49:28 -0700 |
|---|---|---|
| committer | Jim Fehrle | 2020-10-04 09:29:22 -0700 |
| commit | 5b194f6c4f16b99fe8ebe3c8004c31c01aec0b3b (patch) | |
| tree | 1f7d6b6c37d7a53e7a68b978f6c19cdf9e0c7526 /dev | |
| parent | 9c2228ff011dc6188b70084fa1e1a5158affcf24 (diff) | |
Remove prefixes on nonterminal names, e.g. "constr:" and "Prim."
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/doc/parsing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/doc/parsing.md b/dev/doc/parsing.md index f8b4537e77..4982e3e94d 100644 --- a/dev/doc/parsing.md +++ b/dev/doc/parsing.md @@ -73,7 +73,7 @@ very specific to Coq (not so similar to Camlp5): END ``` - Global nonterminals are declared in `pcoq.ml`, e.g. `let bignat = Entry.create "Prim.bignat"`. + Global nonterminals are declared in `pcoq.ml`, e.g. `let bignat = Entry.create "bignat"`. All the `*.mlg` files include `open Pcoq` and often its modules, e.g. `open Pcoq.Prim`. `GRAMMAR EXTEND` should be used only for large syntax additions. To add new commands |
