diff options
| author | Pierre Roux | 2020-09-04 15:02:00 +0200 |
|---|---|---|
| committer | Pierre Roux | 2020-09-11 22:17:09 +0200 |
| commit | b4d11894fd676ec53e4fdf860d32173a778242c5 (patch) | |
| tree | 829bde4d8354149afa1eed09bc73bd905f88e39f /parsing/pcoq.ml | |
| parent | 35a84b3077c219fb5f11c580a5ec405a889c0a4b (diff) | |
[parsing] Rename token NUMERAL to NUMBER
Diffstat (limited to 'parsing/pcoq.ml')
| -rw-r--r-- | parsing/pcoq.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/pcoq.ml b/parsing/pcoq.ml index 2cc16f85d5..b9853029a0 100644 --- a/parsing/pcoq.ml +++ b/parsing/pcoq.ml @@ -64,7 +64,7 @@ struct | _ -> None let lk_nat tok n strm = match stream_nth n strm with - | Tok.NUMERAL p when NumTok.Unsigned.is_nat p -> Some (n + 1) + | Tok.NUMBER p when NumTok.Unsigned.is_nat p -> Some (n + 1) | _ -> None let rec lk_list lk_elem n strm = |
