diff options
author | 2007-05-25 20:32:29 +0000 | |
---|---|---|
committer | 2007-05-25 20:32:29 +0000 | |
commit | f70d55c339cf9fe6758574ecff1d7c5e02e607a2 (patch) | |
tree | 5d0c5ca211bc2bb8662c74f24a0e53ac417eb8ca /sys/lib/libkern/arch/amd64 | |
parent | Remove y2k hack. If no century is specified, use the current one. (diff) | |
download | wireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.tar.xz wireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.zip |
"boundries" -> "boundaries" in various comments. Started by Diego Casati.
Diffstat (limited to 'sys/lib/libkern/arch/amd64')
-rw-r--r-- | sys/lib/libkern/arch/amd64/bzero.S | 2 | ||||
-rw-r--r-- | sys/lib/libkern/arch/amd64/memset.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/arch/amd64/bzero.S b/sys/lib/libkern/arch/amd64/bzero.S index 6e4fe834d1a..b246ac9adb5 100644 --- a/sys/lib/libkern/arch/amd64/bzero.S +++ b/sys/lib/libkern/arch/amd64/bzero.S @@ -18,7 +18,7 @@ ENTRY(bzero) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpq $16,%rdx diff --git a/sys/lib/libkern/arch/amd64/memset.S b/sys/lib/libkern/arch/amd64/memset.S index 2d92dc66534..c28b8840104 100644 --- a/sys/lib/libkern/arch/amd64/memset.S +++ b/sys/lib/libkern/arch/amd64/memset.S @@ -19,7 +19,7 @@ ENTRY(memset) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpq $0x0f,%rcx |