Skip to content

Commit

Permalink
docs: Fix deprecation timing
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jan 27, 2025
1 parent 5d3df52 commit fbea280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub type Result<O, E = ContextError> = core::result::Result<O, E>;
pub type ModalResult<O, E = ContextError> = Result<O, ErrMode<E>>;

/// Deprecated, replaced with [`ModalResult`]
#[deprecated(since = "0.6.23", note = "Replaced with ModalResult")]
#[deprecated(since = "0.6.25", note = "Replaced with ModalResult")]
pub type PResult<O, E = ContextError> = ModalResult<O, E>;

/// Deprecated, replaced with [`ModalResult`]
Expand Down

0 comments on commit fbea280

Please sign in to comment.