File tree 1 file changed +4
-2
lines changed 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -779,8 +779,10 @@ impl App {
779
779
/// There are built-in [`PluginGroup`]s that provide core engine functionality.
780
780
/// The [`PluginGroup`]s available by default are `DefaultPlugins` and `MinimalPlugins`.
781
781
///
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).
783
784
///
785
+ /// ## Examples
784
786
/// ```
785
787
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
786
788
/// #
@@ -805,7 +807,7 @@ impl App {
805
807
/// Can be used to add a group of [`Plugin`]s, where the group is modified
806
808
/// before insertion into a Bevy application. For example, you can add
807
809
/// 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`] .
809
811
///
810
812
/// # Examples
811
813
///
You can’t perform that action at this time.
0 commit comments