aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/validator/Interpreter.v
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/validator/Interpreter.v')
-rw-r--r--cparser/validator/Interpreter.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/cparser/validator/Interpreter.v b/cparser/validator/Interpreter.v
index a24362f8..4ac02693 100644
--- a/cparser/validator/Interpreter.v
+++ b/cparser/validator/Interpreter.v
@@ -26,8 +26,8 @@ Inductive result (A:Type) :=
| Err: result A
| OK: A -> result A.
-Implicit Arguments Err [A].
-Implicit Arguments OK [A].
+Arguments Err [A].
+Arguments OK [A].
Definition bind {A B: Type} (f: result A) (g: A -> result B): result B :=
match f with