File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -6959,22 +6959,21 @@ pub mod normalization {
6959
6959
pub mod conversions {
6960
6960
use core::cmp::Ordering::{Equal, Less, Greater};
6961
6961
use core::slice::SlicePrelude;
6962
- use core::tuple::Tuple2;
6963
6962
use core::option::Option;
6964
6963
use core::option::Option::{Some, None};
6965
6964
use core::slice;
6966
6965
6967
6966
pub fn to_lower(c: char) -> char {
6968
6967
match bsearch_case_table(c, LuLl_table) {
6969
6968
None => c,
6970
- Some(index) => LuLl_table[index].val1()
6969
+ Some(index) => LuLl_table[index].1
6971
6970
}
6972
6971
}
6973
6972
6974
6973
pub fn to_upper(c: char) -> char {
6975
6974
match bsearch_case_table(c, LlLu_table) {
6976
6975
None => c,
6977
- Some(index) => LlLu_table[index].val1()
6976
+ Some(index) => LlLu_table[index].1
6978
6977
}
6979
6978
}
6980
6979
You can’t perform that action at this time.
0 commit comments