Skip to content

Commit 7befcf1

Browse files
authored
typo
1 parent 1e75bf8 commit 7befcf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Primes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ end
131131
primes(n::Int) = primes(1, n)
132132

133133
# internal function for generating the minimum factor of a relatively small number
134-
funcion _min_factor(n)
134+
function _min_factor(n)
135135
n == 1 && return 1
136136
for i in 2:isqrt(n)
137137
n%i == 0 && return i

0 commit comments

Comments
 (0)