Skip to content

Commit 922b04f

Browse files
authored
fix: mdx generation (#8492)
1 parent 86bd299 commit 922b04f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/biome_html_analyze/src/lint/nursery/no_ambiguous_anchor_text.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::a11y::is_hidden_from_screen_reader;
1515
declare_lint_rule! {
1616
/// Disallow ambiguous anchor descriptions.
1717
///
18-
/// Enforces <a> values are not exact matches for the phrases "click here", "here", "link", "a link", or "learn more".
18+
/// Enforces `<a>` values are not exact matches for the phrases "click here", "here", "link", "a link", or "learn more".
1919
/// Screen readers announce tags as links/interactive, but rely on values for context.
2020
/// Ambiguous anchor descriptions do not provide sufficient context for users.
2121
///

crates/biome_js_analyze/src/lint/nursery/no_ambiguous_anchor_text.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::a11y::is_hidden_from_screen_reader;
1414
declare_lint_rule! {
1515
/// Disallow ambiguous anchor descriptions.
1616
///
17-
/// Enforces <a> values are not exact matches for the phrases "click here", "here", "link", "a link", or "learn more".
17+
/// Enforces `<a>` values are not exact matches for the phrases "click here", "here", "link", "a link", or "learn more".
1818
/// Screen readers announce tags as links/interactive, but rely on values for context.
1919
/// Ambiguous anchor descriptions do not provide sufficient context for users.
2020
///

0 commit comments

Comments
 (0)