@@ -343,7 +343,7 @@ impl App {
343
343
/// A resource in Bevy represents globally unique data. Resources must be added to Bevy Apps
344
344
/// before using them. This happens with [`App::insert_resource`].
345
345
///
346
- /// See also `init_resource` for resources that implement `Default` or [`FromResources `].
346
+ /// See also `init_resource` for resources that implement `Default` or [`FromWorld `].
347
347
///
348
348
/// ## Example
349
349
/// ```
@@ -390,7 +390,7 @@ impl App {
390
390
391
391
/// Initialize a resource in the current [App], if it does not exist yet
392
392
///
393
- /// Adds a resource that implements `Default` or [`FromResources `] trait.
393
+ /// Adds a resource that implements `Default` or [`FromWorld `] trait.
394
394
/// If the resource already exists, `init_resource` does nothing.
395
395
///
396
396
/// ## Example
@@ -440,8 +440,9 @@ impl App {
440
440
441
441
/// Sets the main runner loop function for this Bevy App
442
442
///
443
- /// Usually the main loop is handled by Bevy integrated plugins ([`WinitPlugin`]), but
444
- /// in some cases one might wish to implement their own main loop.
443
+ /// Usually the main loop is handled by Bevy integrated plugins
444
+ /// ([`WinitPlugin`](https://docs.rs/bevy_winit/0.5.0/bevy_winit/struct.WinitPlugin.html)),
445
+ /// but in some cases one might wish to implement their own main loop.
445
446
///
446
447
/// This method sets the main loop function, overwriting a previous runner if any.
447
448
///
@@ -491,7 +492,9 @@ impl App {
491
492
/// Bevy plugins can be grouped into a set of plugins. Bevy provides
492
493
/// built-in PluginGroups that provide core engine functionality.
493
494
///
494
- /// The plugin groups available by default are [`DefaultPlugins`] and [`MinimalPlugins`].
495
+ /// The plugin groups available by default are
496
+ /// [`DefaultPlugins`](https://docs.rs/bevy_internal/0.5.0/bevy_internal/struct.DefaultPlugins.html)
497
+ /// and [`MinimalPlugins`](https://docs.rs/bevy_internal/0.5.0/bevy_internal/struct.MinimalPlugins.html).
495
498
///
496
499
/// ## Example
497
500
/// ```
0 commit comments