summaryrefslogtreecommitdiff
path: root/src/ExtractAst.ml
diff options
context:
space:
mode:
authorSon Ho2022-03-03 11:47:26 +0100
committerSon Ho2022-03-03 11:47:26 +0100
commit848874a4eb5d29742f7afa2567bc424871b1c7ef (patch)
tree2b5cc7ecb465124970fa89f372cd5b7d966779ef /src/ExtractAst.ml
parent872c4dda8970df119a5aa06cd0c91fb91627bb49 (diff)
Rename TypeDef...,type_def...,FunDef,fun_def to ...Decl,...decl
Diffstat (limited to '')
-rw-r--r--src/ExtractAst.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ExtractAst.ml b/src/ExtractAst.ml
index da88dc04..dd793291 100644
--- a/src/ExtractAst.ml
+++ b/src/ExtractAst.ml
@@ -45,7 +45,7 @@ type term =
Otherwise, we can use `App` (with the record constructor).
*)
-type fun_def = {
+type fun_decl = {
name : string;
inputs : pattern list;
(** We can match over the inputs, hence the use of [pattern]. In practice,