remove stale todos

This commit is contained in:
rhiannon morris 2023-06-11 19:25:32 +02:00
parent 00e79d4264
commit 865772d512
3 changed files with 0 additions and 3 deletions

View file

@ -10,7 +10,6 @@ def boolω : 1.Bool → [ω.Bool] =
def if : 0.(A : ★) → 1.Bool → ω.A → ω.A → A =
λ A b t f ⇒ case1 b return A of { 'true ⇒ t; 'false ⇒ f };
-- [todo]: universe lifting
def0 If : 1.Bool → 0.★ → 0.★ → ★ =
λ b T F ⇒ case1 b return ★ of { 'true ⇒ T; 'false ⇒ F };