aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-04-02 11:51:27 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-04-09 06:29:54 +0000
commit944d201a2a38a4579ac21a19b5e660a95d50d635 (patch)
tree6de1b671cfc5b125e772ae865f90fdd8819e8d8c
parentfe0ca2ad6f5b3315399918e16c6e95ca519b7d6c (diff)
downloadsrc-944d201a2a38a4579ac21a19b5e660a95d50d635.tar.gz
src-944d201a2a38a4579ac21a19b5e660a95d50d635.zip
memguard(9): Fix two typos in source code comments
- s/comparsion/comparison/ (cherry picked from commit f167c46e7965ae08255313c4a624be19b4873442)
-rw-r--r--sys/vm/memguard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/memguard.c b/sys/vm/memguard.c
index 79c4503320f3..b24cd21dc540 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);