diff options
Diffstat (limited to 'cli/file_fetcher.rs')
-rw-r--r-- | cli/file_fetcher.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs index 3e259ed54..131685e49 100644 --- a/cli/file_fetcher.rs +++ b/cli/file_fetcher.rs @@ -213,7 +213,7 @@ pub fn map_content_type( } /// Remove shebangs from the start of source code strings -pub fn strip_shebang(mut value: String) -> String { +fn strip_shebang(mut value: String) -> String { if value.starts_with("#!") { if let Some(mid) = value.find('\n') { let (_, rest) = value.split_at(mid); |