git: ef764e4801cc - main - vhpet: Fix typo

From: Warner Losh <imp_at_FreeBSD.org>
Date: Thu, 11 Apr 2024 17:34:48 UTC
The branch main has been updated by imp:

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

commit ef764e4801cc503303ae264fe6b005ae3640bbbe
Author:     Elyes Haouas <ehaouas@noos.fr>
AuthorDate: 2024-04-11 17:27:29 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-04-11 17:28:32 +0000

    vhpet: Fix typo
    
    Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/885
---
 sys/amd64/vmm/io/vhpet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/amd64/vmm/io/vhpet.c b/sys/amd64/vmm/io/vhpet.c
index 9682de2eb2fe..daa85bccf14f 100644
--- a/sys/amd64/vmm/io/vhpet.c
+++ b/sys/amd64/vmm/io/vhpet.c
@@ -776,7 +776,7 @@ vhpet_snapshot(struct vhpet *vhpet, struct vm_snapshot_meta *meta)
 	/* at restore time the countbase should have the value it had when the
 	 * snapshot was created; since the value is not directly kept in
 	 * vhpet->countbase, but rather computed relative to the current system
-	 * uptime using countbase_sbt, save the value retured by vhpet_counter
+	 * uptime using countbase_sbt, save the value returned by vhpet_counter
 	 */
 	if (meta->op == VM_SNAPSHOT_SAVE)
 		countbase = vhpet_counter(vhpet, NULL);