From 986fded3723b8f1fb55ebcd9ae2fe2c2c77545c5 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 8 May 2019 18:33:55 -0400 Subject: [PATCH] Spelling --- cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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