Skip to content

Commit e44585d

Browse files
committed
fix: corrected typo UNKNOW -> UNKNOWN
1 parent 683c4b1 commit e44585d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/output/icons.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Icons {
4646
const ESLINT: char = '\u{e655}'; // 
4747
const FILE: char = '\u{f15b}'; // 
4848
const FILE_3D: char = '\u{f01a7}'; // 󰆧
49-
const FILE_UNKNOW: char = '\u{f086f}'; // 󰡯
49+
const FILE_UNKNOWN: char = '\u{f086f}'; // 󰡯
5050
const FOLDER: char = '\u{e5ff}'; // 
5151
const FOLDER_BUILD: char = '\u{f19fc}'; // 󱧼
5252
const FOLDER_CONFIG: char = '\u{e5fc}'; // 
@@ -1193,6 +1193,6 @@ pub fn icon_for_file(file: &File<'_>) -> char {
11931193
} else if let Some(ext) = file.ext.as_ref() {
11941194
*EXTENSION_ICONS.get(ext.as_str()).unwrap_or(&Icons::FILE) // 
11951195
} else {
1196-
Icons::FILE_UNKNOW // 󰡯
1196+
Icons::FILE_UNKNOWN // 󰡯
11971197
}
11981198
}

0 commit comments

Comments
 (0)