From 6d721929557ff855ded2a88275bc5c3f6da115eb Mon Sep 17 00:00:00 2001 From: MrGunflame Date: Thu, 30 Mar 2023 17:15:43 +0200 Subject: Fix doc-links for `ColliderBuilder` and `RigidBodyBuilder` --- src/geometry/collider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/geometry') diff --git a/src/geometry/collider.rs b/src/geometry/collider.rs index 6759b81..7556eb8 100644 --- a/src/geometry/collider.rs +++ b/src/geometry/collider.rs @@ -16,7 +16,7 @@ use parry::shape::{Shape, TriMeshFlags}; #[derive(Clone)] /// A geometric entity that can be attached to a body so it can be affected by contacts and proximity queries. /// -/// To build a new collider, use the `ColliderBuilder` structure. +/// To build a new collider, use the [`ColliderBuilder`] structure. pub struct Collider { pub(crate) coll_type: ColliderType, pub(crate) shape: ColliderShape, -- cgit