about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-08-07 09:35:31 +0900
committerGitHub <noreply@github.com>2020-08-07 09:35:31 +0900
commit3c131d67382c2e8c9d2fc6b3bc172f0f12e3d952 (patch)
tree63b08cd33feb0ed6f11aee99948aa1963551a8b6 /src
parent6f2fa1ef517bbe3ccbae62c40c75f386ad75aa44 (diff)
parentb809f453cac600acef9de5fedb457f842563266c (diff)
downloadrust-3c131d67382c2e8c9d2fc6b3bc172f0f12e3d952.tar.gz
rust-3c131d67382c2e8c9d2fc6b3bc172f0f12e3d952.zip
Rollup merge of #75236 - syntacticsugarglider:patch-1, r=jonas-schievink
Fix typo "biset" -> "bitset"
Diffstat (limited to 'src')
-rw-r--r--src/tools/unicode-table-generator/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unicode-table-generator/src/main.rs b/src/tools/unicode-table-generator/src/main.rs
index eabbcee9d73..d2d1807b3bb 100644
--- a/src/tools/unicode-table-generator/src/main.rs
+++ b/src/tools/unicode-table-generator/src/main.rs
@@ -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).