From 8f5f7b341ce44f04d3635caf91afbcd90dd7687c Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Tue, 2 Sep 2025 21:58:26 +0100 Subject: [PATCH] misc: typo --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 095860e..b667bb0 100644 --- a/src/error.rs +++ b/src/error.rs @@ -16,6 +16,6 @@ pub enum Error { NoSource, /// Internal error (e.g., mutex poisoning or source execution failure) - #[error("Internal error occured")] // TODO: Expand on this + #[error("Internal error occurred")] // TODO: Expand on this InternalError, }