git: 0ad4b1d0b60c - stable/13 - libkern: Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Apr 2022 06:17:48 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=0ad4b1d0b60c3f909de4747c1d9ac2808d4c3b10 commit 0ad4b1d0b60c3f909de4747c1d9ac2808d4c3b10 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-09 07:36:34 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-14 06:13:56 +0000 libkern: Fix two typos in source code comments - s/noticably/noticeably/ (cherry picked from commit d10abf84ad9f508e5e58ec76f90e960eef228b3f) --- sys/libkern/jenkins_hash.c | 4 ++-- 1 file 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)