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()) {