Skip to content

Commit

Permalink
add inks in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jun 30, 2021
1 parent ff79bb6 commit 3cb9b4f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/bevy_app/src/app_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,10 +469,13 @@ impl AppBuilder {
/// Adds a group of plugins
///
/// Bevy plugins can be grouped into a set of plugins. Bevy provides
/// built-in PluginGroups that provide core engine functionality.
/// built-in [`PluginGroup`] that provide core engine functionality.
///
/// The plugin groups available by default are [`DefaultPlugins`] and [`MinimalPlugins`].
///
/// To customize the plugins in the group (reorder, disable a plugin, add a new plugin
/// before / after another plugin), see [`add_plugins_with`](Self::add_plugins_with).
///
/// ## Example
/// ```
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
Expand All @@ -498,7 +501,7 @@ impl AppBuilder {
/// Can be used to add a group of plugins, where the group is modified
/// before insertion into Bevy application. For example, you can add
/// extra plugins at a specific place in the plugin group, or deactivate
/// specific plugins while keeping the rest.
/// specific plugins while keeping the rest using a [`PluginGroupBuilder`].
///
/// ## Example
/// ```
Expand Down

0 comments on commit 3cb9b4f

Please sign in to comment.