Skip to content

Commit 660c8e6

Browse files
committed
Add fixity declaration to _<∣>_ (agda#207)
1 parent 6fb5774 commit 660c8e6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ Bug-fixes
4949
re-exported in their full generality which would lead to unsolved meta variables at
5050
their use sites.
5151

52+
* In `Data.Maybe.Base` the fixity declaration of `_<∣>_` was missing. This has been fixed.
53+
5254
Non-backwards compatible changes
5355
--------------------------------
5456

src/Data/Maybe/Base.agda

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ just a >>= f = f a
100100

101101
-- Alternative: <∣>
102102

103+
infixr 6 _<∣>_
103104
_<∣>_ : Maybe A Maybe A Maybe A
104105
just x <∣> my = just x
105106
nothing <∣> my = my

0 commit comments

Comments
 (0)