aboutsummaryrefslogtreecommitdiff
path: root/sys/libkern
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-04-09 07:36:34 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-04-09 07:36:34 +0000
commitd10abf84ad9f508e5e58ec76f90e960eef228b3f (patch)
treed5f03521f27983a9fc30787403ef2bbc7639a865 /sys/libkern
parent78fc83f096589c7c008fea3c1da7b6d55cb911d7 (diff)
downloadsrc-d10abf84ad9f508e5e58ec76f90e960eef228b3f.tar.gz
src-d10abf84ad9f508e5e58ec76f90e960eef228b3f.zip
libkern: Fix two typos in source code comments
- s/noticably/noticeably/ MFC after: 3 days
Diffstat (limited to 'sys/libkern')
-rw-r--r--sys/libkern/jenkins_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/libkern/jenkins_hash.c b/sys/libkern/jenkins_hash.c
index 089de4e1d991..250ef458aa67 100644
--- a/sys/libkern/jenkins_hash.c
+++ b/sys/libkern/jenkins_hash.c
@@ -241,7 +241,7 @@ uint32_t jenkins_hash( const void *key, size_t length, uint32_t initval)
* 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).
*/
switch(length)
@@ -394,7 +394,7 @@ uint32_t jenkins_hash( const void *key, size_t length, uint32_t initval)
* 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).
*/
switch(length)