Skip to content

Commit

Permalink
fix docstrings for & and |
Browse files Browse the repository at this point in the history
  • Loading branch information
tpapp committed Feb 6, 2020
1 parent 68eaec6 commit 63046b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/int.jl
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ false
(~)(x::BitInteger) = not_int(x)

"""
&(x, y)
x & y
Bitwise and. Implements [three-valued logic](https://en.wikipedia.org/wiki/Three-valued_logic),
returning [`missing`](@ref) if one operand is `missing` and the other is `true`.
Expand All @@ -277,7 +277,7 @@ false
(&)(x::T, y::T) where {T<:BitInteger} = and_int(x, y)

"""
|(x, y)
x | y
Bitwise or. Implements [three-valued logic](https://en.wikipedia.org/wiki/Three-valued_logic),
returning [`missing`](@ref) if one operand is `missing` and the other is `false`.
Expand Down

0 comments on commit 63046b5

Please sign in to comment.