Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySarnoff authored May 13, 2019
1 parent fbfd42c commit 6fdff02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/type/quadmath.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ convert(::Type{Quadmath.ComplexF128}, x::ComplexDF64) = Quadmath.ComplexF128(x)
convert(::Type{Quadmath.ComplexF128}, x::ComplexDF32) = Quadmath.ComplexF128(x)
convert(::Type{Quadmath.ComplexF128}, x::ComplexDF16) = Quadmath.ComplexF128(x)

convert(::Type{ComplexDF64}, x::Quadmath.Complex128) = ComplexDF64(x)
convert(::Type{ComplexDF32}, x::Quadmath.Complex128) = ComplexDF32(x)
convert(::Type{ComplexDF16}, x::Quadmath.Complex128) = ComplexDF16(x)
convert(::Type{ComplexDF64}, x::Quadmath.ComplexF128) = ComplexDF64(x)
convert(::Type{ComplexDF32}, x::Quadmath.ComplexF128) = ComplexDF32(x)
convert(::Type{ComplexDF16}, x::Quadmath.ComplexF128) = ComplexDF16(x)

promote_rule(::Type{ComplexDF64}, ::Type{Quadmath.ComplexF128}) = ComplexDF64
promote_rule(::Type{ComplexDF32}, ::Type{Quadmath.ComplexF128}) = ComplexDF32
Expand Down

2 comments on commit 6fdff02

@JeffreySarnoff
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/693

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.0 -m "<description of version>" 6fdff025cbf51f0f15a82eef864ef76d70cd58f8
git push origin v0.8.0

Please sign in to comment.