We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1372b commit aa1b127Copy full SHA for aa1b127
src/tools/tier-check/src/main.rs
@@ -24,7 +24,7 @@ fn main() {
24
let doc_targets_md = std::fs::read_to_string(&src).expect("failed to read input source");
25
let doc_targets: HashSet<_> = doc_targets_md
26
.lines()
27
- .filter(|line| line.starts_with('`') && line.contains('|'))
+ .filter(|line| line.starts_with(&['`', '['][..]) && line.contains('|'))
28
.map(|line| line.split('`').skip(1).next().expect("expected target code span"))
29
.collect();
30
0 commit comments