From 87aa18b7ccee30ea36bc9469c62a9590fc694e0e Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Sat, 27 Jun 2026 17:06:24 -0400 Subject: [PATCH] Allow error::Result type to use other error Convenience since this Result will shadow std::result::Result when imported --- src/util/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/error.rs b/src/util/error.rs index 6de8ff7..b6c4130 100644 --- a/src/util/error.rs +++ b/src/util/error.rs @@ -43,7 +43,7 @@ impl fmt::Display for ErrorLocation { } } -pub type Result = std::result::Result; +pub type Result = std::result::Result; #[derive(Debug, Clone, Deserialize, Serialize, thiserror::Error)] pub struct Error {