Skip to content

Commit

Permalink
Update the font
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed May 21, 2024
1 parent 1a8854a commit 7a83b0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ fn subprocess(path: &Path) -> Result<String> {
let script = Tag::from(script);
let script = script.as_str().unwrap_or("<none>");
for (language, _) in value {
let language = language.map(Tag::from);
let language = language.as_ref().and_then(Tag::as_str).unwrap_or("<none>");
let language = Tag::from(language);
let language = language.as_str().unwrap_or("<none>");
writeln!(string, "{feature: <10} {script: <10} {language}").unwrap();
}
}
Expand Down

0 comments on commit 7a83b0a

Please sign in to comment.