bevy/crates/bevy_ecs/macros/src
Joseph d5d355ae1f
Fix the clippy::explicit_iter_loop lint (#9834)
# Objective

Replace instances of

```rust
for x in collection.iter{_mut}() {
```

with

```rust
for x in &{mut} collection {
```

This also changes CI to no longer suppress this lint. Note that since
this lint only shows up when using clippy in pedantic mode, it was
probably unnecessary to suppress this lint in the first place.
2023-09-19 03:35:22 +00:00
..
component.rs Fix typos throughout the project (#9090) 2023-07-10 00:11:51 +00:00
fetch.rs Fix CI for Rust 1.72 (#9562) 2023-08-25 12:34:24 +00:00
lib.rs Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
set.rs Schedule-First: the new and improved add_systems (#8079) 2023-03-18 01:45:34 +00:00
states.rs States derive macro (#7535) 2023-02-07 14:02:21 +00:00