Skip to content

Commit a7d58a9

Browse files
committed
Attempt to correct my wrongdoing
1 parent cd34503 commit a7d58a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pade.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ immutable Pade{T<:Number,S<:Number}
22
p::Poly{T}
33
q::Poly{S}
44
var::Symbol
5-
@compat function (::Type{Pade}){T,S}(p::Poly{T},q::Poly{S})
5+
@compat function (::Type{Pade{T,S}}){T,S}(p::Poly{T},q::Poly{S})
66
if p.var != q.var
77
error("Polynomials must have same variable")
88
end

0 commit comments

Comments
 (0)