From b50356e35a09f6891b9d8a9374773a69d17f6093 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 10:03:20 -0700 Subject: [PATCH] fix(native/ffe): correct 'occured' -> 'occurred' in error variant doc A doc comment on an error enum variant in src/native/ffe.rs read '/// An error occured during parsing configuration.'. Doc-only Rust change inside a /// comment. --- src/native/ffe.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/ffe.rs b/src/native/ffe.rs index 4ff10590096..3ae7e40c633 100644 --- a/src/native/ffe.rs +++ b/src/native/ffe.rs @@ -71,7 +71,7 @@ pub mod ffe { enum ErrorCode { /// The type of the flag value does not match the expected type. TypeMismatch, - /// An error occured during parsing configuration. + /// An error occurred during parsing configuration. ParseError, /// Flog is disabled or not found. FlagNotFound,