Fix typo.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1459554 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-21 22:21:48 +00:00
parent b32f86259d
commit 0864279db2
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ public class Primes {
if (n == 2) {
return 2;
}
n = n | 1;//make sur n is odd
n = n | 1;//make sure n is odd
if (n == 1) {
return 2;
}