summaryrefslogtreecommitdiff
path: root/cpu.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-05-08 18:33:55 -0400
committerJeffrey Walton <noloader@gmail.com>2019-05-08 18:33:55 -0400
commit986fded3723b8f1fb55ebcd9ae2fe2c2c77545c5 (patch)
treee7e3ba8ed5584fb7f10322885acc358a4a4de7c2 /cpu.cpp
parentd9aed27ad347e9fe04f6440037c9a913cf3f7bd6 (diff)
downloadcryptopp-git-986fded3723b8f1fb55ebcd9ae2fe2c2c77545c5.tar.gz
Spelling
Diffstat (limited to 'cpu.cpp')
-rw-r--r--cpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu.cpp b/cpu.cpp
index 6fc21eca..e139370f 100644
--- a/cpu.cpp
+++ b/cpu.cpp
@@ -486,7 +486,7 @@ word32 CRYPTOPP_SECTION_INIT g_cacheLineSize = CRYPTOPP_L1_CACHE_LINE_SIZE;
// then *Probe* the cpu executing an instruction and an observe a SIGILL if unsupported.
// The probes are in source files where compilation options like -march=armv8-a+crc make
// intrinsics available. They are expensive when compared to a standard OS feature query.
-// Always perform the feature quesry first. For Linux see
+// Always perform the feature query first. For Linux see
// http://sourceware.org/ml/libc-help/2017-08/msg00012.html
// Avoid probes on Apple platforms because Apple's signal handling for SIGILLs appears broken.
// We are trying to figure out a way to feature test without probes. Also see