More: makes A a parameter to the Steps data type (#541)
This commit is contained in:
parent
ecec10e840
commit
f0ca07c371
1 changed files with 2 additions and 2 deletions
|
@ -1105,9 +1105,9 @@ data Finished {Γ A} (N : Γ ⊢ A) : Set where
|
|||
----------
|
||||
Finished N
|
||||
|
||||
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
|
||||
----------
|
||||
|
|
Loading…
Reference in a new issue