Skip to content

Commit cc47e7b

Browse files
committed
more docs
1 parent 255e8d5 commit cc47e7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/bevy_audio/src/audio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use bevy_ecs::system::Resource;
44
use parking_lot::RwLock;
55
use std::{collections::VecDeque, fmt};
66

7-
/// Use this resource to play audio
7+
/// Use this [`Resource`] to play audio.
88
///
99
/// ```
1010
/// # use bevy_ecs::system::Res;

crates/bevy_ecs/src/change_detection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ pub(crate) struct Ticks<'a> {
168168

169169
/// Unique mutable borrow of a [`Resource`].
170170
///
171-
/// See the [`World`](crate::world::World) documentation to see the usage of a resource.
171+
/// See the [`Resource`] documentation for usage.
172172
///
173173
/// If you need a shared borrow, use [`Res`](crate::system::Res) instead.
174174
///

crates/bevy_ecs/src/system/system_param.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pub trait Resource: Send + Sync + 'static {}
255255

256256
/// Shared borrow of a [`Resource`].
257257
///
258-
/// See the [`World`] documentation to see the usage of a resource.
258+
/// See the [`Resource`] documentation for usage.
259259
///
260260
/// If you need a unique mutable borrow, use [`ResMut`] instead.
261261
///

0 commit comments

Comments
 (0)