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.
1 parent 683c4b1 commit e44585dCopy full SHA for e44585d
1 file changed
src/output/icons.rs
@@ -46,7 +46,7 @@ impl Icons {
46
const ESLINT: char = '\u{e655}'; //
47
const FILE: char = '\u{f15b}'; //
48
const FILE_3D: char = '\u{f01a7}'; //
49
- const FILE_UNKNOW: char = '\u{f086f}'; //
+ const FILE_UNKNOWN: char = '\u{f086f}'; //
50
const FOLDER: char = '\u{e5ff}'; //
51
const FOLDER_BUILD: char = '\u{f19fc}'; //
52
const FOLDER_CONFIG: char = '\u{e5fc}'; //
@@ -1193,6 +1193,6 @@ pub fn icon_for_file(file: &File<'_>) -> char {
1193
} else if let Some(ext) = file.ext.as_ref() {
1194
*EXTENSION_ICONS.get(ext.as_str()).unwrap_or(&Icons::FILE) //
1195
} else {
1196
- Icons::FILE_UNKNOW //
+ Icons::FILE_UNKNOWN //
1197
}
1198
0 commit comments