diff options
| author | Pierre-Marie Pédrot | 2016-05-04 14:30:48 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-05-04 14:34:18 +0200 |
| commit | 8d3f0b614d7b2fb30f6e87b48a4fc5c0d286e49c (patch) | |
| tree | 6a244976f5caef6a2b88c84053fce87f94c78f96 /tactics | |
| parent | c7fd62135403c1ea38194fcdd8035237ee108318 (diff) | |
Normalizing the names of dynamic types to follow a typ_* scheme.
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/taccoerce.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tactics/taccoerce.ml b/tactics/taccoerce.ml index a6e7af16e9..d53c1cc04a 100644 --- a/tactics/taccoerce.ml +++ b/tactics/taccoerce.ml @@ -84,11 +84,11 @@ let to_int v = Some (out_gen (topwit wit_int) v) else None -let to_list v = prj Val.list_tag v +let to_list v = prj Val.typ_list v -let to_option v = prj Val.opt_tag v +let to_option v = prj Val.typ_opt v -let to_pair v = prj Val.pair_tag v +let to_pair v = prj Val.typ_pair v end |
