Skip to content

Commit aee87e5

Browse files
committed
Wrap PR 425 to 80 columns
1 parent 0f94e99 commit aee87e5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
//! # Details
3939
//!
4040
//! - Thiserror deliberately does not appear in your public API. You get the
41-
//! same thing as if you had written an implementation of [`std::error::Error`]
42-
//! by hand, and switching from handwritten impls to thiserror or vice versa
43-
//! is not a breaking change.
41+
//! same thing as if you had written an implementation of
42+
//! [`std::error::Error`] by hand, and switching from handwritten impls to
43+
//! thiserror or vice versa is not a breaking change.
4444
//!
4545
//! - Errors may be enums, structs with named fields, tuple structs, or unit
4646
//! structs.
@@ -175,8 +175,8 @@
175175
//!
176176
//! - If a field is both a source (named `source`, or has `#[source]` or
177177
//! `#[from]` attribute) *and* is marked `#[backtrace]`, then the Error
178-
//! trait's [`provide()`] method is forwarded to the source's `provide` so that
179-
//! both layers of the error share the same backtrace. The `#[backtrace]`
178+
//! trait's [`provide()`] method is forwarded to the source's `provide` so
179+
//! that both layers of the error share the same backtrace. The `#[backtrace]`
180180
//! attribute requires a nightly compiler with Rust version 1.73 or newer.
181181
//!
182182
//! ```rust

0 commit comments

Comments
 (0)