bevy/crates/bevy_audio/src
BD103 6ec6a55645
Unify crate-level preludes (#15080)
# Objective

- Crate-level prelude modules, such as `bevy_ecs::prelude`, are plagued
with inconsistency! Let's fix it!

## Solution

Format all preludes based on the following rules:

1. All preludes should have brief documentation in the format of:
   > The _name_ prelude.
   >
> This includes the most common types in this crate, re-exported for
your convenience.
2. All documentation should be outer, not inner. (`///` instead of
`//!`.)
3. No prelude modules should be annotated with `#[doc(hidden)]`. (Items
within them may, though I'm not sure why this was done.)

## Testing

- I manually searched for the term `mod prelude` and updated all
occurrences by hand. 🫠

---------

Co-authored-by: Gino Valente <49806985+MrGVSV@users.noreply.github.com>
2024-09-08 17:10:57 +00:00
..
audio_output.rs Fix leftover references to children when despawning audio entities (#12407) 2024-03-11 18:16:13 +00:00
audio_source.rs Optimize common usages of AssetReader (#14082) 2024-07-01 19:59:42 +00:00
audio.rs Implement clone for most bundles. (#12993) 2024-04-16 16:37:09 +00:00
lib.rs Unify crate-level preludes (#15080) 2024-09-08 17:10:57 +00:00
pitch.rs
sinks.rs