diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-05-30 21:06:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-30 21:06:47 +0200 |
| commit | 2d30bc78daa5e1fac13863218bd43a0be8a2e7c9 (patch) | |
| tree | 147d23f3a5574868f5346c8a1bf73df69d33523c /src/tools | |
| parent | f7fb29b59d967002d36654b37af2ef378050f2d4 (diff) | |
| parent | aa1b127281ec019c65eeddabb7ba7b55b0f55752 (diff) | |
| download | rust-2d30bc78daa5e1fac13863218bd43a0be8a2e7c9.tar.gz rust-2d30bc78daa5e1fac13863218bd43a0be8a2e7c9.zip | |
Rollup merge of #85781 - badboy:document-aarch-ios-sim-support, r=Amanieu
Add documentation for aarch64-apple-ios-sim target Documentation as requested for [MCP 428](https://github.com/rust-lang/compiler-team/issues/428) to promote this target to Tier 2. Currently it calls out that it's Tier 3. That should be changed if this target is promoted, but this PR could also land before that. Note: probably should get signoff from the compiler team based on that MCP.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/tier-check/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tier-check/src/main.rs b/src/tools/tier-check/src/main.rs index 6a492bbff4d..a41e2d6e3aa 100644 --- a/src/tools/tier-check/src/main.rs +++ b/src/tools/tier-check/src/main.rs @@ -24,7 +24,7 @@ fn main() { let doc_targets_md = std::fs::read_to_string(&src).expect("failed to read input source"); let doc_targets: HashSet<_> = doc_targets_md .lines() - .filter(|line| line.starts_with('`') && line.contains('|')) + .filter(|line| line.starts_with(&['`', '['][..]) && line.contains('|')) .map(|line| line.split('`').skip(1).next().expect("expected target code span")) .collect(); |
