Using slice notation instead of as_ref

pull/156/head
TA Thanh Dinh 6 years ago committed by David Peter
parent 9342d0bb24
commit a13eb60df3

@ -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);
}

Loading…
Cancel
Save