From d5dabee36f632c0a955d554d438308d58c2a7e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Minh=20L=C3=AA?= <115204145+DucMinhNe@users.noreply.github.com> Date: Tue, 2 Jun 2026 17:04:33 +0700 Subject: [PATCH] fix: correct 'occured' typo in I/O error message and doc comment --- src/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/error.rs b/src/error.rs index 98bf01b58..504ca8c18 100644 --- a/src/error.rs +++ b/src/error.rs @@ -8,8 +8,8 @@ use thiserror::Error; /// the lifecycle of this driver #[derive(Debug, Clone, Error, PartialEq, Eq)] pub enum Error { - #[error("An error occured during the attempt of performing I/O: {}", message)] - /// An error occured when performing I/O to the server. + #[error("An error occurred during the attempt of performing I/O: {}", message)] + /// An error occurred when performing I/O to the server. Io { /// A list specifying general categories of I/O error. kind: IoErrorKind,