From feba5031dca5c5ad1c9b77c2003b2fee738bba93 Mon Sep 17 00:00:00 2001 From: Yury Fedotov <102987839+yury-fedotov@users.noreply.github.com> Date: Sat, 10 Aug 2024 21:22:00 -0400 Subject: [PATCH] [Minor typo] Fix article in "an fix" (#12797) --- crates/ruff_diagnostics/src/violation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_diagnostics/src/violation.rs b/crates/ruff_diagnostics/src/violation.rs index 55fa08042fde0..70fcdd6c94bb2 100644 --- a/crates/ruff_diagnostics/src/violation.rs +++ b/crates/ruff_diagnostics/src/violation.rs @@ -18,7 +18,7 @@ impl Display for FixAvailability { } pub trait Violation: Debug + PartialEq + Eq { - /// `None` in the case an fix is never available or otherwise Some + /// `None` in the case a fix is never available or otherwise Some /// [`FixAvailability`] describing the available fix. const FIX_AVAILABILITY: FixAvailability = FixAvailability::None;