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
1 changed files with 1 additions and 1 deletions

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()),