De Bruijn: makes type A a parameter to the Steps data type (#528)

This commit is contained in:
Marko Dimjašević 2020-10-12 12:05:46 +02:00 committed by GitHub
parent 63ab946579
commit 8863ed75d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1066,9 +1066,9 @@ Given a term `L` of type `A`, the evaluator will, for some `N`, return
a reduction sequence from `L` to `N` and an indication of whether
reduction finished:
```
data Steps : ∀ {A} → ∅ ⊢ A → Set where
data Steps {A} : ∅ ⊢ A → Set where
steps : ∀ {A} {L N : ∅ ⊢ A}
steps : {L N : ∅ ⊢ A}
→ L —↠ N
→ Finished N
----------