Using slice notation instead of as_ref

This commit is contained in:
TA Thanh Dinh 2018-05-24 14:38:48 +02:00 committed by David Peter
parent 9342d0bb24
commit a13eb60df3
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ pub fn list_languages(assets: &HighlightingAssets, term_width: usize) {
}
num_chars += new_chars;
print!("{}", Green.paint(word.as_ref()));
print!("{}", Green.paint(&word[..]));
if extension.peek().is_some() {
print!("{}", comma_separator);
}