From 223873c8c7aa09bd18194232bf19944effa96aef Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 28 Oct 2023 06:14:13 -0500 Subject: [PATCH] Correct typo in rules documentation (#8303) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Add missing "is": ```diff - The 🧪 emoji indicates that a rule in "preview". + The 🧪 emoji indicates that a rule is in "preview". ``` ## Test Plan N/A --- crates/ruff_dev/src/generate_rules_table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_dev/src/generate_rules_table.rs b/crates/ruff_dev/src/generate_rules_table.rs index 5e02d9166c..8959796c4f 100644 --- a/crates/ruff_dev/src/generate_rules_table.rs +++ b/crates/ruff_dev/src/generate_rules_table.rs @@ -64,7 +64,7 @@ pub(crate) fn generate() -> String { table_out.push('\n'); table_out.push_str(&format!( - "The {PREVIEW_SYMBOL} emoji indicates that a rule in [\"preview\"](faq.md#what-is-preview)." + "The {PREVIEW_SYMBOL} emoji indicates that a rule is in [\"preview\"](faq.md#what-is-preview)." )); table_out.push('\n'); table_out.push('\n');