bevy/crates/bevy_ecs/macros/src
CGMossa 7a0f46c21b fixes complaints about missing docs (#4551)
# Objective

When using `derive(WorldQuery)`, then clippy complains with the following:

```rust
warning: missing documentation for a struct
  --> src\wild_boar_type\marker_vital_status.rs:35:17
   |
35 | #[derive(Debug, WorldQuery)]
   |                 ^^^^^^^^^^
   |
   = note: this warning originates in the derive macro `WorldQuery` (in Nightly builds, run with -Z macro-backtrace for more info)
```

## Solution

* Either `#[doc(hidden)]` or
* Add a generic documentation line to it.

I don't know what is preferred, but I'd gladly add it in here.
2022-04-22 08:45:04 +00:00
..
component.rs small and mostly pointless refactoring (#2934) 2022-02-13 22:33:55 +00:00
fetch.rs fixes complaints about missing docs (#4551) 2022-04-22 08:45:04 +00:00
lib.rs Fix derive(SystemParam) macro (#4400) 2022-04-04 19:22:28 +00:00