Skip to content

Commit e3ba709

Browse files
committed
[changelog]: rename if-swap to if-swap-else
1 parent f46795a commit e3ba709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Additions to existing modules
242242
* In `Data.Bool.Properties`:
243243
```agda
244244
if-eta : ∀ b → (if b then x else x) ≡ x
245-
if-swap : ∀ b c → (if b then x else (if c then x else y)) ≡ (if c then x else (if b then x else y))
245+
if-swap-else : ∀ b c → (if b then x else (if c then x else y)) ≡ (if c then x else (if b then x else y))
246246
if-not : ∀ b → (if not b then x else y) ≡ (if b then y else x)
247247
if-∧ : ∀ b → (if b ∧ c then x else y) ≡ (if b then (if c then x else y) else y)
248248
if-∨ : ∀ b → (if b ∨ c then x else y) ≡ (if b then x else (if c then x else y))

0 commit comments

Comments
 (0)