Skip to content

Commit

Permalink
Rollup merge of #75236 - syntacticsugarglider:patch-1, r=jonas-schievink
Browse files Browse the repository at this point in the history
Fix typo "biset" -> "bitset"
  • Loading branch information
JohnTitor authored Aug 7, 2020
2 parents 6f2fa1e + b809f45 commit 3c131d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/unicode-table-generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//! We have two separate encoding schemes: a skiplist-like approach, and a
//! compressed bitset. The datasets we consider mostly use the skiplist (it's
//! smaller) but the lowercase and uppercase sets are sufficiently sparse for
//! the bitset to be worthwhile -- for those sets the biset is a 2x size win.
//! the bitset to be worthwhile -- for those sets the bitset is a 2x size win.
//! Since the bitset is also faster, this seems an obvious choice. (As a
//! historical note, the bitset was also the prior implementation, so its
//! relative complexity had already been paid).
Expand Down

0 comments on commit 3c131d6

Please sign in to comment.