Skip to content

Commit e9dc02f

Browse files
committed
fix: line break
1 parent cac627b commit e9dc02f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Algebra/Definitions.agda

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ Associative _∙_ = ∀ x y z → ((x ∙ y) ∙ z) ≈ (x ∙ (y ∙ z))
5050
Commutative : Op₂ A Set _
5151
Commutative _∙_ = x y (x ∙ y) ≈ (y ∙ x)
5252

53-
-- An element is called `Central` for a binary operation if it commutes with all other elements.
53+
-- An element is called `Central` for a binary operation
54+
-- if it commutes with all other elements.
5455
Central : Op₂ A A Set _
5556
Central _∙_ x = y (x ∙ y) ≈ (y ∙ x)
5657

0 commit comments

Comments
 (0)