-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Match unmatched backticks in library/ #108688
Conversation
r? @cuviper (rustbot has picked a reviewer for you, use r? to override) |
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
@bors r+ rollup |
…y, r=jyn514 Match unmatched backticks in library/ Found with GNU grep: ``` grep -rEn '^(([^`]*`){2})*[^`]*`[^`]*$' library/ | rg -v '\s*[//]?.{1,2}```' ``` split out from rust-lang#108685 as per advice.
Hmm might have failed in a rollup, but I'm not seeing how tbh
https://github.com/rust-lang-ci/rust/actions/runs/4326491891/jobs/7553984409#step:26:36168 please just disregard and rer+ if its spurious or I'm wrong 🙈 |
@bors r- |
ah crap sorry, I wanted to comment on a different PR 😄 @bors r=jyn514 |
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#104549 (add -Zexport-executable-symbols to unstable book) - rust-lang#108292 (Label opaque type for 'captures lifetime' error message) - rust-lang#108540 (Add `Atomic*::from_ptr`) - rust-lang#108634 (Add link to component dashboard) - rust-lang#108647 (Remove dead pgo.sh file) - rust-lang#108678 (Use `Option::as_slice` where applicable) - rust-lang#108681 (Improve comments in `needs_process_obligation`.) - rust-lang#108688 (Match unmatched backticks in library/) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Please do not land aesthetic commits against the library/portable-simd subtree. |
@workingjubilee I usually try to avoid doing that (including the other subtrees like rustfmt or clippy). This has slipped through. I am sorry! |
Found with GNU grep:
split out from #108685 as per advice.