From ac646e40fa815da1d5eef66954b19ede8f8b9338 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 9 Sep 2025 11:05:13 +0200 Subject: [PATCH] uucore/build.rs: rename function from embed_all_utilities_locales to embed_all_utility_locales --- src/uucore/build.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uucore/build.rs b/src/uucore/build.rs index 29ffb2d86..a5a544fcb 100644 --- a/src/uucore/build.rs +++ b/src/uucore/build.rs @@ -39,8 +39,8 @@ pub fn main() -> Result<(), Box> { embed_single_utility_locale(&mut embedded_file, &project_root()?, &util_name)?; } None => { - // Embed all utilities locales (multicall binary or fallback) - embed_all_utilities_locales(&mut embedded_file, &project_root()?)?; + // Embed all utility locales (multicall binary or fallback) + embed_all_utility_locales(&mut embedded_file, &project_root()?)?; } } @@ -154,7 +154,7 @@ fn embed_single_utility_locale( } /// Embed locale files for all utilities (multicall binary) -fn embed_all_utilities_locales( +fn embed_all_utility_locales( embedded_file: &mut std::fs::File, project_root: &Path, ) -> Result<(), Box> {