Skip to content

Commit b3310f9

Browse files
committed
Fix p_xor typo
1 parent afa7e61 commit b3310f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/static.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Base.:(&)(x::Bool, y::StaticBool) = x & Bool(y)
195195
Base.:(&)(x::StaticBool, y::Bool) = Bool(x) & y
196196

197197
Base.xor(y::StaticBool, x::StaticBool) = _xor(x, y)
198-
p_xor(::True, ::True) = False()
198+
_xor(::True, ::True) = False()
199199
_xor(::True, ::False) = True()
200200
_xor(::False, ::True) = True()
201201
_xor(::False, ::False) = False()

0 commit comments

Comments
 (0)