Skip to content

Commit 1bed017

Browse files
authored
Merge pull request #8584 from cakebaker/uucore_build_rename_fn
uucore/build.rs: rename function
2 parents 9aaf603 + ac646e4 commit 1bed017

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/uucore/build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ pub fn main() -> Result<(), Box<dyn std::error::Error>> {
3939
embed_single_utility_locale(&mut embedded_file, &project_root()?, &util_name)?;
4040
}
4141
None => {
42-
// Embed all utilities locales (multicall binary or fallback)
43-
embed_all_utilities_locales(&mut embedded_file, &project_root()?)?;
42+
// Embed all utility locales (multicall binary or fallback)
43+
embed_all_utility_locales(&mut embedded_file, &project_root()?)?;
4444
}
4545
}
4646

@@ -154,7 +154,7 @@ fn embed_single_utility_locale(
154154
}
155155

156156
/// Embed locale files for all utilities (multicall binary)
157-
fn embed_all_utilities_locales(
157+
fn embed_all_utility_locales(
158158
embedded_file: &mut std::fs::File,
159159
project_root: &Path,
160160
) -> Result<(), Box<dyn std::error::Error>> {

0 commit comments

Comments
 (0)