Skip to content

Commit 4c81ff6

Browse files
authored
Merge pull request #57 from dev-five-git/lint
Fix lint
2 parents 831807f + fcbc987 commit 4c81ff6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/braillify/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl Encoder {
8585
let is_all_uppercase = word_chars.iter().all(|c| c.is_uppercase());
8686
let has_korean_char = word_chars
8787
.iter()
88-
.any(|c| (0xAC00 <= *c as u32 && *c as u32 <= 0xD7A3));
88+
.any(|c| 0xAC00 <= *c as u32 && *c as u32 <= 0xD7A3);
8989

9090
if self.english_indicator && !self.is_english && word_chars[0].is_ascii_alphabetic() {
9191
// 제31항 국어 문장 안에 그리스 문자가 나올 때에는 그 앞에 로마자표 ⠴을 적고 그 뒤에 로마자 종료표 ⠲을 적는다

0 commit comments

Comments
 (0)