Skip to content

Commit b6cf220

Browse files
remove unnecessary parameter from Relation.Binary.Reasoning.Base.Apartness (#2438)
Co-authored-by: MatthewDaggitt <[email protected]>
1 parent ab0038b commit b6cf220

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Highlights
99
Bug-fixes
1010
---------
1111

12+
* Removed unnecessary parameter `#-trans : Transitive _#_` from
13+
`Relation.Binary.Reasoning.Base.Apartness`.
14+
1215
Non-backwards compatible changes
1316
--------------------------------
1417

src/Relation/Binary/Reasoning/Base/Apartness.agda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ open import Relation.Binary.Reasoning.Syntax
2020
module Relation.Binary.Reasoning.Base.Apartness {a ℓ₁ ℓ₂} {A : Set a}
2121
{_≈_ : Rel A ℓ₁} {_#_ : Rel A ℓ₂}
2222
(≈-equiv : IsEquivalence _≈_)
23-
(#-trans : Transitive _#_) (#-sym : Symmetric _#_)
23+
(#-sym : Symmetric _#_)
2424
(#-≈-trans : Trans _#_ _≈_ _#_) (≈-#-trans : Trans _≈_ _#_ _#_)
2525
where
2626

0 commit comments

Comments
 (0)