Skip to content

Commit ca95d28

Browse files
authored
langs: Make 'get_true' function private (#1027)
1 parent 0315932 commit ca95d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/langs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ mk_langs!(
127127
);
128128

129129
pub(crate) mod fake {
130-
pub fn get_true<'a>(ext: &str, mode: &str) -> Option<&'a str> {
130+
pub(crate) fn get_true<'a>(ext: &str, mode: &str) -> Option<&'a str> {
131131
if ext == "m"
132132
|| ext == "mm"
133133
|| mode == "objc"

0 commit comments

Comments
 (0)