Using slice notation instead of as_ref

This commit is contained in:
TA Thanh Dinh
2018-05-25 17:38:54 +02:00
committed by David Peter
parent 9342d0bb24
commit a13eb60df3
+1 -1
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);
}