summaryrefslogtreecommitdiff
path: root/jenkins_hash.c
diff options
context:
space:
mode:
authorclark.kang <clark.kang@kakao.com>2014-12-25 01:04:03 +0900
committerdormando <dormando@rydia.net>2014-12-31 23:13:54 -0800
commit81176472b1b96a511e5dc46d82c29ec3eefb96b0 (patch)
treef8f06ed7ad1c93d4512ef725bf0eb97dd7834982 /jenkins_hash.c
parentf87ac298bb36ba14abe1f4407c6fd04ca11579e8 (diff)
downloadmemcached-81176472b1b96a511e5dc46d82c29ec3eefb96b0.tar.gz
fix typos
Diffstat (limited to 'jenkins_hash.c')
-rw-r--r--jenkins_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins_hash.c b/jenkins_hash.c
index b60cff4..3631dd0 100644
--- a/jenkins_hash.c
+++ b/jenkins_hash.c
@@ -159,7 +159,7 @@ uint32_t jenkins_hash(
* rest of the string. Every machine with memory protection I've seen
* does it on word boundaries, so is OK with this. But VALGRIND will
* still catch it and complain. The masking trick does make the hash
- * noticably faster for short strings (like English words).
+ * noticeably faster for short strings (like English words).
*/
#ifndef VALGRIND
@@ -337,7 +337,7 @@ uint32_t jenkins_hash( const void *key, size_t length)
* rest of the string. Every machine with memory protection I've seen
* does it on word boundaries, so is OK with this. But VALGRIND will
* still catch it and complain. The masking trick does make the hash
- * noticably faster for short strings (like English words).
+ * noticeably faster for short strings (like English words).
*/
#ifndef VALGRIND