2
0
mirror of https://github.com/sharkdp/bat synced 2024-11-04 18:00:24 +00:00

Hide SyntaxMapping::replace

This commit is contained in:
sharkdp 2020-03-21 20:58:11 +01:00 committed by David Peter
parent 84ba323b1c
commit 90397a8aac

View File

@ -13,7 +13,7 @@ impl SyntaxMapping {
self.0.insert(from.into(), to.into())
}
pub fn replace<'a>(&self, input: impl Into<Cow<'a, str>>) -> Cow<'a, str> {
pub(crate) fn replace<'a>(&self, input: impl Into<Cow<'a, str>>) -> Cow<'a, str> {
let input = input.into();
match self.0.get(input.as_ref()) {
Some(s) => Cow::from(s.clone()),