Skip to content

Commit

Permalink
Change use of is to ===, as the former is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Jan 19, 2017
1 parent 4331b29 commit fad01e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/manual/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ UInt64
This is accomplished via the following code in `base/boot.jl`:

```julia
if is(Int,Int64)
if Int === Int64
typealias UInt UInt64
else
typealias UInt UInt32
Expand Down

0 comments on commit fad01e3

Please sign in to comment.