Skip to content

Commit 359e39c

Browse files
committed
fmt
1 parent 0c44da6 commit 359e39c

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

crates/ohno/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,12 @@
227227
//!
228228
//! For applications that need a simple, catch-all error type, use [`AppError`]. It
229229
//! automatically captures backtraces and can wrap any error type.
230-
//!
230+
//!
231231
//! To avoid accidental usage in libraries, [`AppError`] is only available when the `app_err`
232232
//! feature is enabled.
233233
//!
234234
//! Example usage:
235-
//!
235+
//!
236236
//! ```rust
237237
//! use ohno::{AppError, Result};
238238
//!

crates/ohno/tests/app/base.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//! Tests for `AppError` methods.
55
6-
use ohno::{EnrichableExt, AppError, assert_error_message};
6+
use ohno::{AppError, EnrichableExt, assert_error_message};
77

88
#[test]
99
fn source_none() {

crates/ohno/tests/app/conversion.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//! Tests for automatic error conversion with ? operator.
55
6-
use ohno::{app_err, assert_error_message, AppError};
6+
use ohno::{AppError, app_err, assert_error_message};
77

88
#[test]
99
fn question_mark_on_io_error() {

crates/ohno/tests/app/enrich_err.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
//! Tests for adding context to errors.
55
6-
use ohno::{IntoAppError, AppError};
76
use ohno::app_err;
7+
use ohno::{AppError, IntoAppError};
88
use ohno::{EnrichableExt, enrich_err};
99

1010
#[test]

crates/ohno/tests/app/into_trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
//! Tests for `IntoAppError` trait implementations.
55
6-
use ohno::{AppError, IntoAppError};
76
use ohno::assert_error_message;
7+
use ohno::{AppError, IntoAppError};
88

99
#[test]
1010
fn result_into_app_err() {

0 commit comments

Comments
 (0)