fix a bunch of broken backtick pairs

This commit is contained in:
Eric Seppanen 2022-01-08 16:28:38 -08:00
parent 33cf2b85e5
commit b1df7ed87f
7 changed files with 7 additions and 7 deletions

View File

@ -87,7 +87,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [prevent caching normalization results with a cycle](https://github.com/rust-lang/rust/pull/80246) * [prevent caching normalization results with a cycle](https://github.com/rust-lang/rust/pull/80246)
* [fix ICE when lookup method in trait for type that have bound vars](https://github.com/rust-lang/rust/pull/80170) * [fix ICE when lookup method in trait for type that have bound vars](https://github.com/rust-lang/rust/pull/80170)
* [remove `DefPath` from `Visibility` and calculate it on demand](https://github.com/rust-lang/rust/pull/80099) * [remove `DefPath` from `Visibility` and calculate it on demand](https://github.com/rust-lang/rust/pull/80099)
* [`rustc_query_system : reduce dependency graph memory usage](https://github.com/rust-lang/rust/pull/79589) * [`rustc_query_system`: reduce dependency graph memory usage](https://github.com/rust-lang/rust/pull/79589)
* [add `impl Div<NonZeroU*> for u*` which cannot panic](https://github.com/rust-lang/rust/pull/79134) * [add `impl Div<NonZeroU*> for u*` which cannot panic](https://github.com/rust-lang/rust/pull/79134)
* [deprecate atomic `compare_and_swap` method](https://github.com/rust-lang/rust/pull/79261) * [deprecate atomic `compare_and_swap` method](https://github.com/rust-lang/rust/pull/79261)
* [stabilize `core::slice::fill`](https://github.com/rust-lang/rust/pull/79213) * [stabilize `core::slice::fill`](https://github.com/rust-lang/rust/pull/79213)

View File

@ -109,7 +109,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [add `MaybeUninit` method `array_assume_init`](https://github.com/rust-lang/rust/pull/80600) * [add `MaybeUninit` method `array_assume_init`](https://github.com/rust-lang/rust/pull/80600)
* [change `BinaryHeap::append` rebuild heuristic](https://github.com/rust-lang/rust/pull/77435) * [change `BinaryHeap::append` rebuild heuristic](https://github.com/rust-lang/rust/pull/77435)
* [implement `ptr::write` without dedicated intrinsic](https://github.com/rust-lang/rust/pull/80290) * [implement `ptr::write` without dedicated intrinsic](https://github.com/rust-lang/rust/pull/80290)
* [introduce {`Ref`, `RefMut`}`::try_map' for optional projections in `RefCell`](https://github.com/rust-lang/rust/pull/78455) * [introduce {`Ref`, `RefMut`}`::try_map` for optional projections in `RefCell`](https://github.com/rust-lang/rust/pull/78455)
* [re-stabilize `Weak::as_ptr` and friends for unsized T](https://github.com/rust-lang/rust/pull/80764) * [re-stabilize `Weak::as_ptr` and friends for unsized T](https://github.com/rust-lang/rust/pull/80764)
* [add `Iterator::intersperse_with`](https://github.com/rust-lang/rust/pull/80567) * [add `Iterator::intersperse_with`](https://github.com/rust-lang/rust/pull/80567)
* [`TrustedRandomAaccess` specialization composes incorrectly for nested `iter::Zips`](https://github.com/rust-lang/rust/pull/80670) * [`TrustedRandomAaccess` specialization composes incorrectly for nested `iter::Zips`](https://github.com/rust-lang/rust/pull/80670)

View File

@ -156,7 +156,7 @@ decision. Express your opinions now.
* [disposition: merge] [Cautiously add IntoIterator for arrays by value](https://github.com/rust-lang/rust/pull/84147) * [disposition: merge] [Cautiously add IntoIterator for arrays by value](https://github.com/rust-lang/rust/pull/84147)
* [disposition: merge] [Stabilize Duration::MAX](https://github.com/rust-lang/rust/pull/84120) * [disposition: merge] [Stabilize Duration::MAX](https://github.com/rust-lang/rust/pull/84120)
* [disposition: merge] [Stabilize `impl From<[(K, V); N]`> for HashMap`](https://github.com/rust-lang/rust/pull/84111) * [disposition: merge] [Stabilize `impl From<[(K, V); N]`> for `HashMap`](https://github.com/rust-lang/rust/pull/84111)
* [disposition: merge] [Allow setting `target_family` to multiple values, and implement `target_family="wasm"`](https://github.com/rust-lang/rust/pull/84072) * [disposition: merge] [Allow setting `target_family` to multiple values, and implement `target_family="wasm"`](https://github.com/rust-lang/rust/pull/84072)
* [disposition: close] [Exiting a process calls exit() which isnt thread-safe](https://github.com/rust-lang/rust/issues/83994) * [disposition: close] [Exiting a process calls exit() which isnt thread-safe](https://github.com/rust-lang/rust/issues/83994)
* [disposition: merge] [Stabilize `:pat_param` but leave :pat2021 gated](https://github.com/rust-lang/rust/pull/83386) * [disposition: merge] [Stabilize `:pat_param` but leave :pat2021 gated](https://github.com/rust-lang/rust/pull/83386)

View File

@ -98,7 +98,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [add coverage to `continue` statements](https://github.com/rust-lang/rust/pull/84295) * [add coverage to `continue` statements](https://github.com/rust-lang/rust/pull/84295)
* [further split up `const_fn` feature flag](https://github.com/rust-lang/rust/pull/84310) * [further split up `const_fn` feature flag](https://github.com/rust-lang/rust/pull/84310)
* [various const parameter defaults improvements](https://github.com/rust-lang/rust/pull/84299) * [various const parameter defaults improvements](https://github.com/rust-lang/rust/pull/84299)
* [tweak trait not `use d suggestion](https://github.com/rust-lang/rust/pull/84499) * [tweak trait not `use`d suggestion](https://github.com/rust-lang/rust/pull/84499)
* [on stable, suggest removing `#![feature]` for features that have been stabilized](https://github.com/rust-lang/rust/pull/83722) * [on stable, suggest removing `#![feature]` for features that have been stabilized](https://github.com/rust-lang/rust/pull/83722)
* [improve diagnostics for function passed when a type was expected](https://github.com/rust-lang/rust/pull/84520) * [improve diagnostics for function passed when a type was expected](https://github.com/rust-lang/rust/pull/84520)
* [add suggestion to "use break" when attempting to implicit-break a loop](https://github.com/rust-lang/rust/pull/84516) * [add suggestion to "use break" when attempting to implicit-break a loop](https://github.com/rust-lang/rust/pull/84516)

View File

@ -112,7 +112,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [account for capture kind in auto traits migration](https://github.com/rust-lang/rust/pull/86869) * [account for capture kind in auto traits migration](https://github.com/rust-lang/rust/pull/86869)
* [stop generating `alloca`s & `memcmp` for simple short array equality](https://github.com/rust-lang/rust/pull/85828) * [stop generating `alloca`s & `memcmp` for simple short array equality](https://github.com/rust-lang/rust/pull/85828)
* [inline `Iterator as IntoIterator`](https://github.com/rust-lang/rust/pull/84560) * [inline `Iterator as IntoIterator`](https://github.com/rust-lang/rust/pull/84560)
* [optimize unchecked indexing into `chunks` and 'chunks_mut`](https://github.com/rust-lang/rust/pull/86823) * [optimize unchecked indexing into `chunks` and `chunks_mut`](https://github.com/rust-lang/rust/pull/86823)
* [add `Integer::log` variants](https://github.com/rust-lang/rust/pull/80918) * [add `Integer::log` variants](https://github.com/rust-lang/rust/pull/80918)
* [special case for integer log10](https://github.com/rust-lang/rust/pull/86930) * [special case for integer log10](https://github.com/rust-lang/rust/pull/86930)
* [cargo: unify cargo and rustc's error reporting](https://github.com/rust-lang/cargo/pull/9655) * [cargo: unify cargo and rustc's error reporting](https://github.com/rust-lang/cargo/pull/9655)

View File

@ -144,7 +144,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [some perf optimizations and logging](https://github.com/rust-lang/rust/pull/87203) * [some perf optimizations and logging](https://github.com/rust-lang/rust/pull/87203)
* [update Rust Float-Parsing to use the Eisel-Lemire algorithm](https://github.com/rust-lang/rust/pull/86761) * [update Rust Float-Parsing to use the Eisel-Lemire algorithm](https://github.com/rust-lang/rust/pull/86761)
* [stabilize `[T; N]::map(_)`](https://github.com/rust-lang/rust/pull/87174) * [stabilize `[T; N]::map(_)`](https://github.com/rust-lang/rust/pull/87174)
* [split `MaybeUninit::write' into new feature gate and stabilize it](https://github.com/rust-lang/rust/pull/86344) * [split `MaybeUninit::write` into new feature gate and stabilize it](https://github.com/rust-lang/rust/pull/86344)
* [mark Option::insert as `must_use`](https://github.com/rust-lang/rust/pull/87196) * [mark Option::insert as `must_use`](https://github.com/rust-lang/rust/pull/87196)
* [added `Arc::try_pin`](https://github.com/rust-lang/rust/pull/85579) * [added `Arc::try_pin`](https://github.com/rust-lang/rust/pull/85579)
* [hashbrown: replace some custom unsafe code with `array::map`](https://github.com/rust-lang/hashbrown/pull/281) * [hashbrown: replace some custom unsafe code with `array::map`](https://github.com/rust-lang/hashbrown/pull/281)

View File

@ -123,7 +123,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [clippy: move `if_then_panic` to pedantic and rename to `manual_assert`](https://github.com/rust-lang/rust-clippy/pull/7810) * [clippy: move `if_then_panic` to pedantic and rename to `manual_assert`](https://github.com/rust-lang/rust-clippy/pull/7810)
* [clippy: fix false positive in `match_overlapping_arm`](https://github.com/rust-lang/rust-clippy/pull/7847) * [clippy: fix false positive in `match_overlapping_arm`](https://github.com/rust-lang/rust-clippy/pull/7847)
* [clippy: fix `question_mark` false positive on custom error type](https://github.com/rust-lang/rust-clippy/pull/7860) * [clippy: fix `question_mark` false positive on custom error type](https://github.com/rust-lang/rust-clippy/pull/7860)
* [clippy: add `unit-hash lint](https://github.com/rust-lang/rust-clippy/pull/7875) * [clippy: add `unit-hash` lint](https://github.com/rust-lang/rust-clippy/pull/7875)
* [clippy: new lint: `string-slice`](https://github.com/rust-lang/rust-clippy/pull/7878) * [clippy: new lint: `string-slice`](https://github.com/rust-lang/rust-clippy/pull/7878)
* [clippy: ignore references to type aliases in `ptr_arg`](https://github.com/rust-lang/rust-clippy/pull/7890) * [clippy: ignore references to type aliases in `ptr_arg`](https://github.com/rust-lang/rust-clippy/pull/7890)
* [clippy: fix ICE in `undocumented_unsafe_blocks`](https://github.com/rust-lang/rust-clippy/pull/7891) * [clippy: fix ICE in `undocumented_unsafe_blocks`](https://github.com/rust-lang/rust-clippy/pull/7891)