git: f77a88c855c5 - main - vm_page: Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 04 Jun 2022 10:52:33 UTC
The branch main has been updated by gbe (doc committer):

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

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

    vm_page: Fix a typo in a source code comment
    
    - s/consistancy/consistency/
    
    MFC after:      3 days
---
 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 6abee86a227d..127406c0d582 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -5364,7 +5364,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)