@@ -157,7 +157,7 @@ func (g ctrlGroup) matchH2(h uintptr) bitset {
157
157
// Portable implementation of matchH2.
158
158
//
159
159
// Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See
160
- // note on bitset about the packed instrinsified return value.
160
+ // note on bitset about the packed intrinsified return value.
161
161
func ctrlGroupMatchH2 (g ctrlGroup , h uintptr ) bitset {
162
162
// NB: This generic matching routine produces false positive matches when
163
163
// h is 2^N and the control bytes have a seq of 2^N followed by 2^N+1. For
@@ -179,7 +179,7 @@ func (g ctrlGroup) matchEmpty() bitset {
179
179
// Portable implementation of matchEmpty.
180
180
//
181
181
// Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See
182
- // note on bitset about the packed instrinsified return value.
182
+ // note on bitset about the packed intrinsified return value.
183
183
func ctrlGroupMatchEmpty (g ctrlGroup ) bitset {
184
184
// An empty slot is 1000 0000
185
185
// A deleted slot is 1111 1110
@@ -200,7 +200,7 @@ func (g ctrlGroup) matchEmptyOrDeleted() bitset {
200
200
// Portable implementation of matchEmptyOrDeleted.
201
201
//
202
202
// Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See
203
- // note on bitset about the packed instrinsified return value.
203
+ // note on bitset about the packed intrinsified return value.
204
204
func ctrlGroupMatchEmptyOrDeleted (g ctrlGroup ) bitset {
205
205
// An empty slot is 1000 0000
206
206
// A deleted slot is 1111 1110
@@ -219,7 +219,7 @@ func (g ctrlGroup) matchFull() bitset {
219
219
// Portable implementation of matchFull.
220
220
//
221
221
// Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See
222
- // note on bitset about the packed instrinsified return value.
222
+ // note on bitset about the packed intrinsified return value.
223
223
func ctrlGroupMatchFull (g ctrlGroup ) bitset {
224
224
// An empty slot is 1000 0000
225
225
// A deleted slot is 1111 1110
0 commit comments