1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-20 16:33:20 +00:00

Return mappings as a slice

This commit is contained in:
sharkdp
2020-06-03 10:05:31 +02:00
committed by David Peter
parent ec2722d465
commit 74e8373e34
+1 -1
View File
@@ -59,7 +59,7 @@ impl<'a> SyntaxMapping<'a> {
Ok(())
}
pub fn mappings(&self) -> &Vec<(GlobMatcher, MappingTarget<'a>)> {
pub fn mappings(&self) -> &[(GlobMatcher, MappingTarget<'a>)] {
&self.mappings
}