ruby-changes:61288
From: Kazuhiro <ko1@a...>
Date: Mon, 18 May 2020 17:43:22 +0900 (JST)
Subject: [ruby-changes:61288] cf31e98079 (master): Fix a typo [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=cf31e98079 From cf31e9807956350fcca0bef1b650330a216194cc Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA <zn@m...> Date: Mon, 18 May 2020 17:42:50 +0900 Subject: Fix a typo [ci skip] diff --git a/internal/bits.h b/internal/bits.h index 9cae35b..a7ddcae 100644 --- a/internal/bits.h +++ b/internal/bits.h @@ -456,7 +456,7 @@ ntz_int32(uint32_t x) https://github.com/ruby/ruby/blob/trunk/internal/bits.h#L456 #elif MSC_VERSION_SINCE(1400) /* :FIXME: Is there any way to issue TZCNT instead of BSF, apart from using - * assembly? Because issueing LZCNT seems possible (see nlz.h). */ + * assembly? Because issuing LZCNT seems possible (see nlz.h). */ unsigned long r; return _BitScanForward(&r, x) ? (int)r : 32; -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/