Nahua
Nahua
## PR Info - Closes #404 One-line fix. Do let me know if I should add a test case. Happy to if deemed desirable :)
### Description While trying to create a new lint, I wrote [this line](https://github.com/rust-lang/rust-clippy/blob/812db454b862b3604d6dca812cdc3c7bc740f635/clippy_lints/src/methods/collapsible_str_replace.rs#L197): ```rust let to_arg_repr_set = FxHashSet::from_iter(to_arg_reprs.iter().cloned()); ``` The feedback I received was: ```sh error: usage of `FromIterator::from_iter` -->...
fixes #6651 ``` changelog: [`collapsible_str_replace`]: create new lint `collapsible_str_replace` ``` If you added a new lint, here's a checklist for things that will be checked during review or continuous integration....
The `cargo shuttle init` command will support the following flags after #238 is merged: - `--axum` - `--rocket` - `--tide` - `--tower` Todo's: - Per #205, we could add an...
## Description This is a **test-only branch** checked out from [PR 119](https://github.com/OpenMined/Threepio/pull/119/) to debug the `file cross check` errors. **THIS BRANCH WILL BE CLOSED AFTER PR119 PASSES ALL TESTS.** ##...
Per [discussion](https://github.com/exercism/rust/issues/1065), there should be a concept exercise for `traits` after implementing the concept exercise for `iterators`. ## Getting started WIP ## Learning objectives Student should be able to: -...
## PR Info - Closes #521 ## Adds - TBD ## Fixes - TBD ## Changes - TBD
## Motivation Issue for self-assignment and tracking :) Following [this discussion](https://github.com/SeaQL/sea-orm/pull/981#issuecomment-1236691534), we need to implement a trait that allows the access and modification of `TableRef` on all statement types that...
Thank you for making Clippy better! We're collecting our changelog from pull request descriptions. If your PR only includes internal changes, you can just write `changelog: none`. Otherwise, please write...
fixes #9221 This PR makes sure that enums or structs not implementing `PartialEq` trait but still using the `if let` patterns can be linted to be rewritten with `matches!`. If...