Module Name: src
Committed By: andvar
Date: Tue Sep 24 20:19:30 UTC 2024
Modified Files:
src/sys/arch/amd64/amd64: copy.S
Log Message:
s/acually/actually/ in comment.
P.S. the comment itself is hardly readable though.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/amd64/amd64/copy.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/amd64/amd64/copy.S
diff -u src/sys/arch/amd64/amd64/copy.S:1.35 src/sys/arch/amd64/amd64/copy.S:1.36
--- src/sys/arch/amd64/amd64/copy.S:1.35 Sun Dec 18 07:53:30 2022
+++ src/sys/arch/amd64/amd64/copy.S Tue Sep 24 20:19:30 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: copy.S,v 1.35 2022/12/18 07:53:30 skrll Exp $ */
+/* $NetBSD: copy.S,v 1.36 2024/09/24 20:19:30 andvar Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -150,7 +150,7 @@ ENTRY(kcopy)
/*
* Using 'rep movs' to copy backwards is not as fast as for forwards copies
- * and ought not be done when the copy doesn't acually overlap.
+ * and ought not be done when the copy doesn't actually overlap.
* However kcopy() isn't used any that looks even vaguely used often.
* I'm also not sure it is ever asked to do overlapping copies!
*/