From 30704115e209b5e6316b7b807c37ee203a94052e Mon Sep 17 00:00:00 2001 From: Caio Hamamura Date: Mon, 24 Jun 2019 17:44:23 -0300 Subject: [PATCH] Update hash.cpp comment mistype Changed "Candiate" to "Candidate" in comments --- src/hash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hash.cpp b/src/hash.cpp index 6f30d5a6..43e9c13c 100644 --- a/src/hash.cpp +++ b/src/hash.cpp @@ -131,7 +131,7 @@ const unsigned indices[] = // The algorithm creates a list of small primes, plus an open-ended list of // potential primes. All prime numbers are potential prime numbers. However // some potential prime numbers are not prime. In an ideal world, all potential -// prime numbers would be prime. Candiate prime numbers are chosen as the next +// prime numbers would be prime. Candidate prime numbers are chosen as the next // highest potential prime. Then this number is tested for prime by dividing it // by all potential prime numbers less than the sqrt of the candidate. //