From eb6ac60c3ba9b635d996a68fe5f7c57e65c9c1e5 Mon Sep 17 00:00:00 2001 From: rohan436 Date: Thu, 26 Mar 2026 18:57:12 +0800 Subject: [PATCH] docs: fix typo in UTF-8 error doc comment --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 8ffc181..b1e85cf 100644 --- a/src/error.rs +++ b/src/error.rs @@ -58,7 +58,7 @@ impl Error { pub enum ErrorKind { /// An I/O error that occurred while reading CSV data. Io(io::Error), - /// A UTF-8 decoding error that occured while reading CSV data into Rust + /// A UTF-8 decoding error that occurred while reading CSV data into Rust /// `String`s. Utf8 { /// The position of the record in which this error occurred, if