We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c20dc93 + 4c81ff6 commit ab92f6aCopy full SHA for ab92f6a
1 file changed
libs/braillify/src/lib.rs
@@ -85,7 +85,7 @@ impl Encoder {
85
let is_all_uppercase = word_chars.iter().all(|c| c.is_uppercase());
86
let has_korean_char = word_chars
87
.iter()
88
- .any(|c| (0xAC00 <= *c as u32 && *c as u32 <= 0xD7A3));
+ .any(|c| 0xAC00 <= *c as u32 && *c as u32 <= 0xD7A3);
89
90
if self.english_indicator && !self.is_english && word_chars[0].is_ascii_alphabetic() {
91
// 제31항 국어 문장 안에 그리스 문자가 나올 때에는 그 앞에 로마자표 ⠴을 적고 그 뒤에 로마자 종료표 ⠲을 적는다
0 commit comments