aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Reflection/Syntax.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Reflection/Syntax.v b/src/Reflection/Syntax.v
index a60f0d76f..d13eb1a42 100644
--- a/src/Reflection/Syntax.v
+++ b/src/Reflection/Syntax.v
@@ -64,7 +64,7 @@ Section language.
Bind Scope expr_scope with exprf.
Inductive expr : type -> Type :=
| Return {t} : exprf t -> expr t
- | Abs {src dst} : (var src -> expr dst) -> expr (src -> dst).
+ | Abs {src dst} : (var src -> expr dst) -> expr (Arrow src dst).
Bind Scope expr_scope with expr.
Global Coercion Return : exprf >-> expr.
Fixpoint smart_interp_flat_map {f g}