From 642266f1aed40757d92bd058bbf3ad31a8432a5c Mon Sep 17 00:00:00 2001 From: Fredrik Lanker Date: Tue, 1 Oct 2024 14:48:14 +0200 Subject: [PATCH] fix: add missing word --- crates/biome_js_analyze/src/lint/a11y/use_semantic_elements.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/biome_js_analyze/src/lint/a11y/use_semantic_elements.rs b/crates/biome_js_analyze/src/lint/a11y/use_semantic_elements.rs index 744709d3dff8..8d2f02717448 100644 --- a/crates/biome_js_analyze/src/lint/a11y/use_semantic_elements.rs +++ b/crates/biome_js_analyze/src/lint/a11y/use_semantic_elements.rs @@ -99,7 +99,7 @@ impl Rule for UseSemanticElements { "The elements with the following roles can be changed to the following elements:\n", ) } else { - String::from("The element with this role can be changed to a DOM element that already this role.") + String::from("The element with this role can be changed to a DOM element that already has this role.") }; for (element, attribute) in result_elements.iter().zip(result_attributes.iter()) {