summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2020-03-11 16:43:12 +0900
committerGitHub <noreply@github.com>2020-03-11 00:43:12 -0700
commite89ebdcb87f23a71ad97581541bb2eaeee5e83e9 (patch)
treedeeca18cf2d7e49de7201be5585e374ba4cfd977 /internal
parent9511b4c8facf583073ed8ecfd3d84710565572a6 (diff)
Fix typos (#2958)
* Fix a typo * Fix typos in st.[ch]
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'internal')
-rw-r--r--internal/bits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/bits.h b/internal/bits.h
index 52da71264c..410c2b9a97 100644
--- a/internal/bits.h
+++ b/internal/bits.h
@@ -230,7 +230,7 @@ static inline unsigned int
nlz_int32(uint32_t x)
{
#if defined(_MSC_VER) && defined(__AVX2__)
- /* Note: It seems there is no such tihng like __LZCNT__ predefined in MSVC.
+ /* Note: It seems there is no such thing like __LZCNT__ predefined in MSVC.
* AMD CPUs have had this instruction for decades (since K10) but for
* Intel, Haswell is the oldest one. We need to use __AVX2__ for maximum
* safety. */