mirror of
https://github.com/sharkdp/bat
synced 2024-11-04 18:00:24 +00:00
Hide SyntaxMapping::replace
This commit is contained in:
parent
84ba323b1c
commit
90397a8aac
@ -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()),
|
||||
|
Loading…
Reference in New Issue
Block a user