aboutsummaryrefslogtreecommitdiff
path: root/theories/Lists
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Lists')
-rwxr-xr-xtheories/Lists/TheoryList.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Lists/TheoryList.v b/theories/Lists/TheoryList.v
index 20f39e0efa..7671b25ff7 100755
--- a/theories/Lists/TheoryList.v
+++ b/theories/Lists/TheoryList.v
@@ -149,7 +149,7 @@ Hypothesis eqA_dec : forall a b:A, {a = b} + {a <> b}.
Fixpoint mem (a:A) (l:list A) {struct l} : bool :=
match l with
| nil => false
- | b :: m => if eqA_dec a b then fun H => true else fun H => mem a m
+ | b :: m => if eqA_dec a b then true else mem a m
end.
Hint Unfold In.