Skip to content

Commit

Permalink
change: remove unused Result alias
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Feb 9, 2025
1 parent 287fc47 commit ae9f090
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion any_error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "throw_error"
version = "0.2.0"
version = "0.3.0"
authors = ["Greg Johnston"]
license = "MIT"
readme = "../README.md"
Expand Down
5 changes: 0 additions & 5 deletions any_error/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ use std::{

/* Wrapper Types */

/// This is a result type into which any error can be converted.
///
/// Results are stored as [`Error`].
pub type Result<T, E = Error> = core::result::Result<T, E>;

/// A generic wrapper for any error.
#[derive(Debug, Clone)]
#[repr(transparent)]
Expand Down

0 comments on commit ae9f090

Please sign in to comment.