De Bruijn: changes the alignment of function arguments for consistency
This commit is contained in:
parent
849807da58
commit
41d7e373ce
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue