Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tats-u committed Jun 5, 2024
1 parent c690b98 commit 53ce280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub mod code_table_type {
/// It has 2 types: `Complete`, complete tables (it doesn't have undefined codepoints) / `Incomplete`, incomplete tables (does have ones)
#[derive(Debug, Clone)]
pub enum TableType {
/// complete table, which doen't have any undefined codepoints
/// complete table, which doesn't have any undefined codepoints
Complete(&'static [char; 128]),
/// incomplete table, which has some undefined codepoints
Incomplete(&'static [Option<char>; 128]),
Expand Down

0 comments on commit 53ce280

Please sign in to comment.