chore: remove workaround from example

This commit is contained in:
Leonardo de Moura 2022-04-03 09:25:47 -07:00
parent 61ae72330f
commit a8ee6029c2

View file

@ -45,7 +45,7 @@ an element of the list `as`. The constructor `Member.head` says that `a`
is in the list if the list begins with it. The constructor `Member.tail`
says that if `a` is in the list `bs`, it is also in the list `b::bs`.
-/
inductive Member : α → List α → Type _
inductive Member : α → List α → Type
| head : Member a (a::as)
| tail : Member a bs → Member a (b::bs)