Skip to content

Commit e4f066f

Browse files
committed
Remove unnecessary pub function classifier.
1 parent ba20da1 commit e4f066f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/externalfiles.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ pub fn load_string<P: AsRef<Path>>(file_path: P) -> Result<String, LoadStringErr
7676
}
7777
}
7878

79-
pub fn load_external_files(names: &[String]) -> Option<String> {
79+
fn load_external_files(names: &[String]) -> Option<String> {
8080
let mut out = String::new();
8181
for name in names {
8282
let s = match load_string(name) {

0 commit comments

Comments
 (0)