bevy/crates/bevy_app/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
..
app.rs Migrated NonZero* to NonZero<*> (#14978) 2024-08-30 02:37:47 +00:00
lib.rs Unify crate-level preludes (#15080) 2024-09-08 17:10:57 +00:00
main_schedule.rs Allow ordering variable timesteps around fixed timesteps (#14881) 2024-08-23 16:19:42 +00:00
panic_handler.rs Fix common capitalization errors in documentation (#14562) 2024-07-31 21:16:05 +00:00
plugin_group.rs plugin_group! macro (adopted) (#14339) 2024-07-16 01:14:33 +00:00
plugin.rs Remove deprecated bevy_dynamic_plugin (#14534) 2024-07-30 15:31:08 +00:00
schedule_runner.rs Simplify runner app exit code. (#13074) 2024-04-23 20:42:00 +00:00
sub_app.rs bevy_reflect: Function reflection terminology refactor (#14813) 2024-08-19 21:52:36 +00:00
terminal_ctrl_c_handler.rs Remove all existing system order ambiguities in DefaultPlugins (#15031) 2024-09-03 20:24:34 +00:00