Skip to content

Commit ead2b23

Browse files
committed
add links in doc
1 parent 91406d8 commit ead2b23

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

crates/bevy_app/src/app.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,8 +779,10 @@ impl App {
779779
/// There are built-in [`PluginGroup`]s that provide core engine functionality.
780780
/// The [`PluginGroup`]s available by default are `DefaultPlugins` and `MinimalPlugins`.
781781
///
782-
/// # Examples
782+
/// To customize the plugins in the group (reorder, disable a plugin, add a new plugin
783+
/// before / after another plugin), see [`add_plugins_with`](Self::add_plugins_with).
783784
///
785+
/// ## Examples
784786
/// ```
785787
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
786788
/// #
@@ -805,7 +807,7 @@ impl App {
805807
/// Can be used to add a group of [`Plugin`]s, where the group is modified
806808
/// before insertion into a Bevy application. For example, you can add
807809
/// additional [`Plugin`]s at a specific place in the [`PluginGroup`], or deactivate
808-
/// specific [`Plugin`]s while keeping the rest.
810+
/// specific [`Plugin`]s while keeping the rest using a [`PluginGroupBuilder`].
809811
///
810812
/// # Examples
811813
///

0 commit comments

Comments
 (0)