JuliaMath / Primes.jl

Prime numbers in Julia
Other
99 stars 32 forks source link

missing type annotation on argument of `radical` #119

Open jmichel7 opened 2 years ago

jmichel7 commented 2 years ago

A very small issue: in the doc of radical it is rightly stated radical(n::Integer). But in the source the function is radical(n) without any type restriction. It would be good to put one, to enable other packages to overload radical for other types with less clashes possible.