Skip to content

Commit 8312cae

Browse files
committed
chore(fix-docs): doc links were broken
Authored-by: RobWalt <[email protected]>
1 parent 66bbd5c commit 8312cae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

crates/bevy_gizmos/src/primitives/dim3.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ impl<'w, 's, T: GizmoConfigGroup> GizmoPrimitive3d<Cuboid> for Gizmos<'w, 's, T>
382382

383383
// cylinder 3d
384384

385-
/// Builder for configuring the drawing options of [`Cylinder3d`].
385+
/// Builder for configuring the drawing options of [`Cylinder`].
386386
pub struct Cylinder3dBuilder<'a, 'w, 's, T: GizmoConfigGroup> {
387387
gizmos: &'a mut Gizmos<'w, 's, T>,
388388

@@ -568,7 +568,7 @@ impl<T: GizmoConfigGroup> Drop for Capsule3dBuilder<'_, '_, '_, T> {
568568

569569
// cone 3d
570570

571-
/// Builder for configuring the drawing options of [`Cone3d`].
571+
/// Builder for configuring the drawing options of [`Cone`].
572572
pub struct Cone3dBuilder<'a, 'w, 's, T: GizmoConfigGroup> {
573573
gizmos: &'a mut Gizmos<'w, 's, T>,
574574

@@ -660,7 +660,7 @@ impl<T: GizmoConfigGroup> Drop for Cone3dBuilder<'_, '_, '_, T> {
660660

661661
// conical frustum 3d
662662

663-
/// Builder for configuring the drawing options of [`ConicalFrustum3d`].
663+
/// Builder for configuring the drawing options of [`ConicalFrustum`].
664664
pub struct ConicalFrustum3dBuilder<'a, 'w, 's, T: GizmoConfigGroup> {
665665
gizmos: &'a mut Gizmos<'w, 's, T>,
666666

@@ -762,7 +762,7 @@ impl<T: GizmoConfigGroup> Drop for ConicalFrustum3dBuilder<'_, '_, '_, T> {
762762

763763
// torus 3d
764764

765-
/// Builder for configuring the drawing options of [`Torus3d`].
765+
/// Builder for configuring the drawing options of [`Torus`].
766766
pub struct Torus3dBuilder<'a, 'w, 's, T: GizmoConfigGroup> {
767767
gizmos: &'a mut Gizmos<'w, 's, T>,
768768

crates/bevy_gizmos/src/primitives/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! A module for rendering each of the 2D and 3D [`bevy_math::primitives`] with [`Gizmos`].
1+
//! A module for rendering each of the 2D and 3D [`bevy_math::primitives`] with [`crate::prelude::Gizmos`].
22
33
pub mod dim2;
44
pub mod dim3;

0 commit comments

Comments
 (0)