De Bruijn: changes the alignment of function arguments for consistency

This commit is contained in:
Marko Dimjašević 2020-10-02 13:33:42 +02:00
parent 849807da58
commit 41d7e373ce
No known key found for this signature in database
GPG key ID: 565EE9641503F0AA

View file

@ -692,10 +692,10 @@ variables it is easy to define the special case of
substitution for one free variable:
```
_[_] : ∀ {Γ A B}
→ Γ , B ⊢ A
→ Γ ⊢ B
---------
→ Γ ⊢ A
→ Γ , B ⊢ A
→ Γ ⊢ B
---------
→ Γ ⊢ A
_[_] {Γ} {A} {B} N M = subst {Γ , B} {Γ} σ {A} N
where
σ : ∀ {A} → Γ , B ∋ A → Γ ⊢ A