git: f167c46e7965 - main - memguard(9): Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 02 Apr 2022 11:51:53 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=f167c46e7965ae08255313c4a624be19b4873442 commit f167c46e7965ae08255313c4a624be19b4873442 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-02 11:51:27 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-02 11:51:27 +0000 memguard(9): Fix two typos in source code comments - s/comparsion/comparison/ MFC after: 3 days --- sys/vm/memguard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/vm/memguard.c b/sys/vm/memguard.c index 20de6edfc339..bb6493ae5536 100644 --- a/sys/vm/memguard.c +++ b/sys/vm/memguard.c @@ -464,7 +464,7 @@ memguard_cmp_mtp(struct malloc_type *mtp, unsigned long size) #if 1 /* - * The safest way of comparsion is to always compare short description + * The safest way of comparison is to always compare short description * string of memory type, but it is also the slowest way. */ return (strcmp(mtp->ks_shortdesc, vm_memguard_desc) == 0); @@ -498,7 +498,7 @@ memguard_cmp_zone(uma_zone_t zone) return (1); /* - * The safest way of comparsion is to always compare zone name, + * The safest way of comparison is to always compare zone name, * but it is also the slowest way. */ return (strcmp(zone->uz_name, vm_memguard_desc) == 0);