5
5
) ]
6
6
//! [](https://bevy.org)
7
7
//!
8
- //! Bevy is an open-source modular game engine built in Rust, with a focus on developer productivity
8
+ //! Bevy is an open-source, modular game engine built in Rust, with a focus on developer productivity
9
9
//! and performance.
10
10
//!
11
11
//! Check out the [Bevy website](https://bevy.org) for more information, read the
14
14
//!
15
15
//! ## Example
16
16
//!
17
- //! Here is a simple "Hello World" Bevy app:
17
+ //! Here is a simple "Hello, World! " Bevy app:
18
18
//! ```
19
19
//! use bevy::prelude::*;
20
20
//!
29
29
//! }
30
30
//! ```
31
31
//!
32
- //! Don't let the simplicity of the example above fool you. Bevy is a [fully featured game engine](https://bevy.org)
32
+ //! Don't let the simplicity of the example above fool you. Bevy is a [fully featured game engine](https://bevy.org),
33
33
//! and it gets more powerful every day!
34
34
//!
35
35
//! ## This Crate
36
36
//!
37
- //! The `bevy` crate is just a container crate that makes it easier to consume Bevy subcrates.
38
- //! The defaults provide a "full" engine experience, but you can easily enable / disable features
37
+ //! The `bevy` crate is a container crate that makes it easier to consume Bevy subcrates.
38
+ //! The defaults provide a "full engine" experience, but you can easily enable or disable features
39
39
//! in your project's `Cargo.toml` to meet your specific needs. See Bevy's `Cargo.toml` for a full
40
- //! list of features available.
40
+ //! list of available features .
41
41
//!
42
- //! If you prefer, you can also consume the individual bevy crates directly.
42
+ //! If you prefer, you can also use the individual Bevy crates directly.
43
43
//! Each module in the root of this crate, except for the prelude, can be found on crates.io
44
- //! with `bevy_` appended to the front, e.g. `app` -> [`bevy_app`](https://docs.rs/bevy_app/*/bevy_app/).
44
+ //! with `bevy_` appended to the front, e.g., `app` -> [`bevy_app`](https://docs.rs/bevy_app/*/bevy_app/).
45
45
#![ doc = include_str ! ( "../docs/cargo_features.md" ) ]
46
46
#![ doc(
47
47
html_logo_url = "https://bevy.org/assets/icon.png" ,
@@ -56,6 +56,6 @@ pub use bevy_internal::*;
56
56
#[ expect(
57
57
unused_imports,
58
58
clippy:: single_component_path_imports,
59
- reason = "This causes bevy to be compiled as a dylib when using dynamic linking, and as such cannot be removed or changed without affecting dynamic linking."
59
+ reason = "This causes Bevy to be compiled as a dylib when using dynamic linking and therefore cannot be removed or changed without affecting dynamic linking."
60
60
) ]
61
61
use bevy_dylib;
0 commit comments