Skip to content

Commit 3c131d6

Browse files
authored
Rollup merge of #75236 - syntacticsugarglider:patch-1, r=jonas-schievink
Fix typo "biset" -> "bitset"
2 parents 6f2fa1e + b809f45 commit 3c131d6

File tree

1 file changed

+1
-1
lines changed
  • src/tools/unicode-table-generator/src

1 file changed

+1
-1
lines changed

src/tools/unicode-table-generator/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! We have two separate encoding schemes: a skiplist-like approach, and a
1616
//! compressed bitset. The datasets we consider mostly use the skiplist (it's
1717
//! smaller) but the lowercase and uppercase sets are sufficiently sparse for
18-
//! the bitset to be worthwhile -- for those sets the biset is a 2x size win.
18+
//! the bitset to be worthwhile -- for those sets the bitset is a 2x size win.
1919
//! Since the bitset is also faster, this seems an obvious choice. (As a
2020
//! historical note, the bitset was also the prior implementation, so its
2121
//! relative complexity had already been paid).

0 commit comments

Comments
 (0)