File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use bevy_ecs::system::Resource;
4
4
use parking_lot:: RwLock ;
5
5
use std:: { collections:: VecDeque , fmt} ;
6
6
7
- /// Use this resource to play audio
7
+ /// Use this [`Resource`] to play audio.
8
8
///
9
9
/// ```
10
10
/// # use bevy_ecs::system::Res;
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ pub(crate) struct Ticks<'a> {
168
168
169
169
/// Unique mutable borrow of a [`Resource`].
170
170
///
171
- /// See the [`World`](crate::world::World) documentation to see the usage of a resource .
171
+ /// See the [`Resource`] documentation for usage.
172
172
///
173
173
/// If you need a shared borrow, use [`Res`](crate::system::Res) instead.
174
174
///
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ pub trait Resource: Send + Sync + 'static {}
255
255
256
256
/// Shared borrow of a [`Resource`].
257
257
///
258
- /// See the [`World `] documentation to see the usage of a resource .
258
+ /// See the [`Resource `] documentation for usage.
259
259
///
260
260
/// If you need a unique mutable borrow, use [`ResMut`] instead.
261
261
///
You can’t perform that action at this time.
0 commit comments