We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be9379f commit 3b2a578Copy full SHA for 3b2a578
src/internal/cpu/cpu_arm64.go
@@ -36,7 +36,7 @@ func doinit() {
36
37
switch GOOS {
38
case "linux", "android":
39
- // HWCap was populated by the runtime from the auxillary vector.
+ // HWCap was populated by the runtime from the auxiliary vector.
40
// Use HWCap information since reading aarch64 system registers
41
// is not supported in user space on older linux kernels.
42
ARM64.HasAES = isSet(HWCap, hwcap_AES)
@@ -103,7 +103,7 @@ func doinit() {
103
ARM64.HasATOMICS = true
104
}
105
default:
106
- // Other operating systems do not support reading HWCap from auxillary vector
+ // Other operating systems do not support reading HWCap from auxiliary vector
107
// or reading privileged aarch64 system registers in user space.
108
109
0 commit comments