Skip to content

Commit ac646e4

Browse files
committed
uucore/build.rs: rename function
from embed_all_utilities_locales to embed_all_utility_locales
1 parent 9aaf603 commit ac646e4

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)