summaryrefslogtreecommitdiff
path: root/contrib/libc++/src/hash.cpp
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-01-15 21:17:36 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-01-15 21:17:36 +0000
commitd72607e9e28bcdeca1cb370dd3bf119c7853576f (patch)
treec7ef11e9501df78a928c64bb92aa05baf56f5808 /contrib/libc++/src/hash.cpp
parentf7e6516a1f4099194f051c570a3301dae90729da (diff)
parentf857581820d15e410e9945d2fcd5f7163be25a96 (diff)
Notes
Diffstat (limited to 'contrib/libc++/src/hash.cpp')
-rw-r--r--contrib/libc++/src/hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libc++/src/hash.cpp b/contrib/libc++/src/hash.cpp
index 388ab2ebe175..dc90f789c6b8 100644
--- a/contrib/libc++/src/hash.cpp
+++ b/contrib/libc++/src/hash.cpp
@@ -136,7 +136,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.
//