Skip to content

Commit 62e8e95

Browse files
committed
Remove Transform links from doc comments
1 parent 21901b9 commit 62e8e95

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/plugins/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ use bevy::prelude::*;
5656
/// - [`SolverPlugin`]: Solves positional and angular [constraints], updates velocities and solves velocity constraints
5757
/// (dynamic [friction](Friction) and [restitution](Restitution)).
5858
/// - [`SleepingPlugin`]: Controls when bodies should be deactivated and marked as [`Sleeping`] to improve performance.
59-
/// - [`SyncPlugin`]: Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's [`Transform`]s.
59+
/// - [`SyncPlugin`]: Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's `Transform`s.
6060
/// - `PhysicsDebugPlugin`: Renders physics objects and events like [AABBs](ColliderAabb) and [contacts](Collision)
6161
/// for debugging purposes (only with `debug-plugin` feature enabled).
6262
///
@@ -185,7 +185,7 @@ pub enum PhysicsSet {
185185
///
186186
/// See [`SleepingPlugin`].
187187
Sleeping,
188-
/// Responsible for synchronizing [`Position`]s and [`Rotation`]s with Bevy's [`Transform`]s.
188+
/// Responsible for synchronizing [`Position`]s and [`Rotation`]s with Bevy's `Transform`s.
189189
///
190190
/// See [`SyncPlugin`].
191191
Sync,

src/plugins/sync.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
//! Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's [`Transform`]s.
1+
//! Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's `Transform`s.
22
//!
33
//! See [`SyncPlugin`].
44
55
use crate::{prelude::*, PhysicsSchedule};
66
use bevy::prelude::*;
77

8-
/// Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's [`Transform`]s.
8+
/// Synchronizes the engine's [`Position`]s and [`Rotation`]s with Bevy's `Transform`s.
99
///
1010
/// Currently, the transforms of nested bodies are updated to reflect their global positions.
1111
/// This means that nested [rigid bodies](RigidBody) can behave independently regardless of the hierarchy.
@@ -27,7 +27,7 @@ type RigidBodyParentComponents = (
2727
Option<&'static Rotation>,
2828
);
2929

30-
/// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy [`Transform`]s.
30+
/// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy `Transform`s.
3131
#[cfg(feature = "2d")]
3232
fn sync_transforms(
3333
mut bodies: Query<(&mut Transform, &Position, &Rotation, Option<&Parent>)>,
@@ -66,9 +66,9 @@ fn sync_transforms(
6666
}
6767
}
6868

69-
/// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy's [`Transform`]s.
69+
/// Copies [`Position`] and [`Rotation`] values from the physics world to Bevy's `Transform`s.
7070
///
71-
/// Nested rigid bodies move independently of each other, so the [`Transform`]s of child entities are updated
71+
/// Nested rigid bodies move independently of each other, so the `Transform`s of child entities are updated
7272
/// based on their own and their parent's [`Position`] and [`Rotation`].
7373
#[cfg(feature = "3d")]
7474
fn sync_transforms(

0 commit comments

Comments
 (0)