Fix code formatting and capitalize Levenshtein

This commit is contained in:
Tobias Bucher 2021-11-01 21:15:38 +01:00
parent cf10e7b4b1
commit b337627775
1 changed files with 3 additions and 3 deletions

View File

@ -114,7 +114,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [make all proc-macro back-compat lints deny-by-default](https://github.com/rust-lang/rust/pull/88041)
* [stabilise `unix_process_wait_more`, extra `ExitStatusExt` methods](https://github.com/rust-lang/rust/pull/88300)
* [stabilize feature `saturating_div` for rust 1.58.0](https://github.com/rust-lang/rust/pull/88624)
* [remove unnecessary bound on `Zip' specialization impl](https://github.com/rust-lang/rust/pull/88789)
* [remove unnecessary bound on `Zip` specialization impl](https://github.com/rust-lang/rust/pull/88789)
* [deduplicate `panic_fmt`](https://github.com/rust-lang/rust/pull/88860)
* [give better error for `macro_rules name`](https://github.com/rust-lang/rust/pull/89257)
* [stabilize `CString::from_vec_with_nul`(`_unchecked`)](https://github.com/rust-lang/rust/pull/89292)
@ -124,14 +124,14 @@ If you are a Rust project owner and are looking for contributors, please submit
* [use the "nice E0277 errors" for `!Send` `impl Future` from foreign crate](https://github.com/rust-lang/rust/pull/89889)
* [don't mark `for` loop iter expression as desugared](https://github.com/rust-lang/rust/pull/89895)
* [change `Duration::`(`try_`)`from_secs_`{`f32`, `f64`} underflow error](https://github.com/rust-lang/rust/pull/89944)
* [suggest a case insensitive match name regardless of levenshtein distance](https://github.com/rust-lang/rust/pull/89956)
* [suggest a case insensitive match name regardless of Levenshtein distance](https://github.com/rust-lang/rust/pull/89956)
* [make `From` impls of `NonZero` integer const](https://github.com/rust-lang/rust/pull/90077)
* [make more `From` impls `const` (libcore)](https://github.com/rust-lang/rust/pull/90009)
* [mark {`array`, `slice`}`::`{`from_ref`, `from_mut`} as `const fn`](https://github.com/rust-lang/rust/pull/90162)
* [avoid overflow in `VecDeque::with_capacity_in()`](https://github.com/rust-lang/rust/pull/90010)
* [fix MIRI UB in `Vec::swap_remove`](https://github.com/rust-lang/rust/pull/90099)
* [implement coherence checks for negative trait impls](https://github.com/rust-lang/rust/pull/90104)
* [make `RSplit<T, P>: Clone not require `T: Clone`](https://github.com/rust-lang/rust/pull/90117)
* [make `RSplit<T, P>: Clone` not require `T: Clone`](https://github.com/rust-lang/rust/pull/90117)
* [codegen-gcc: disable strict aliasing](https://github.com/rust-lang/rustc_codegen_gcc/pull/104)
* [clippy: warn on structs with a trailing zero-sized array but no `repr` attribute](https://github.com/rust-lang/rust-clippy/pull/7838)
* [clippy: cover `Result` for `question_mark`](https://github.com/rust-lang/rust-clippy/pull/7840)