From 7ff92b1cf5d019a0d6482eeb2438de38c1d5972e Mon Sep 17 00:00:00 2001 From: Thierry Berger Date: Mon, 5 Aug 2024 11:32:43 +0200 Subject: Fix CI (#707) Removes dead code + other rust 1.80 related fixes --- src/geometry/interaction_graph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/geometry') diff --git a/src/geometry/interaction_graph.rs b/src/geometry/interaction_graph.rs index 4d037d1..de2948b 100644 --- a/src/geometry/interaction_graph.rs +++ b/src/geometry/interaction_graph.rs @@ -66,7 +66,7 @@ impl InteractionGraph { /// a map between `CollisionObjectSlabHandle` and `ColliderGraphIndex`, then you should update this /// map to associate `id` to the handle returned by this method. For example: /// - /// ```.ignore + /// ```ignore /// // Let `id` be the graph index of the collision object we want to remove. /// if let Some(other_handle) = graph.remove_node(id) { /// // The graph index of `other_handle` changed to `id` due to the removal. -- cgit