git: d44793af7e20 - stable/13 - vm_page: Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Fri, 10 Jun 2022 12:34:14 UTC
The branch stable/13 has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=d44793af7e20c8a4e5f7d7a16a2c5a5be79cc35c

commit d44793af7e20c8a4e5f7d7a16a2c5a5be79cc35c
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 10:52:22 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-10 12:30:17 +0000

    vm_page: Fix a typo in a source code comment
    
    - s/consistancy/consistency/
    
    (cherry picked from commit f77a88c855c557902e4e4c9696b08e847c413f54)
---
 sys/vm/vm_page.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index d9feba6fe51a..685a5338969b 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -5333,7 +5333,7 @@ vm_page_zero_invalid(vm_page_t m, boolean_t setvalid)
 
 	/*
 	 * setvalid is TRUE when we can safely set the zero'd areas
-	 * as being valid.  We can do this if there are no cache consistancy
+	 * as being valid.  We can do this if there are no cache consistency
 	 * issues.  e.g. it is ok to do with UFS, but not ok to do with NFS.
 	 */
 	if (setvalid)