Skip to content

Commit 2b1548a

Browse files
committed
Fixed fmt differences
1 parent af05290 commit 2b1548a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

text/sed.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2380,7 +2380,8 @@ impl Sed {
23802380
/// >0 - An error occurred.
23812381
fn main() -> Result<(), Box<dyn std::error::Error>> {
23822382
setlocale(LocaleCategory::LcAll, "");
2383-
let project_name = std::env::var("PROJECT_NAME").ok()
2383+
let project_name = std::env::var("PROJECT_NAME")
2384+
.ok()
23842385
.unwrap_or("posixutil-text".to_string());
23852386
textdomain(&*project_name)?;
23862387
bind_textdomain_codeset(&*project_name, "UTF-8")?;

text/tests/sed/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
// SPDX-License-Identifier: MIT
88
//
99

10-
use plib::testing::{
11-
run_test,
12-
TestPlan,
13-
};
10+
use plib::testing::{run_test, TestPlan};
1411

1512
fn sed_test(
1613
args: &[&str],

0 commit comments

Comments
 (0)