We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af05290 commit 2b1548aCopy full SHA for 2b1548a
text/sed.rs
@@ -2380,7 +2380,8 @@ impl Sed {
2380
/// >0 - An error occurred.
2381
fn main() -> Result<(), Box<dyn std::error::Error>> {
2382
setlocale(LocaleCategory::LcAll, "");
2383
- let project_name = std::env::var("PROJECT_NAME").ok()
+ let project_name = std::env::var("PROJECT_NAME")
2384
+ .ok()
2385
.unwrap_or("posixutil-text".to_string());
2386
textdomain(&*project_name)?;
2387
bind_textdomain_codeset(&*project_name, "UTF-8")?;
text/tests/sed/mod.rs
@@ -7,10 +7,7 @@
7
// SPDX-License-Identifier: MIT
8
//
9
10
-use plib::testing::{
11
- run_test,
12
- TestPlan,
13
-};
+use plib::testing::{run_test, TestPlan};
14
15
fn sed_test(
16
args: &[&str],
0 commit comments