From 7cafc5471c7fb22b4034b8fe90e848cd0912204d Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Tue, 27 Oct 2020 15:05:10 +0100 Subject: Ignore the code block in the InteractionGroups doc. --- src/geometry/interaction_groups.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/geometry/interaction_groups.rs b/src/geometry/interaction_groups.rs index 6812fbf..48808de 100644 --- a/src/geometry/interaction_groups.rs +++ b/src/geometry/interaction_groups.rs @@ -12,7 +12,7 @@ /// - The interaction groups of `a` has at least one bit set to `1` in common with the interaction mask of `b`. /// - The interaction groups of `b` has at least one bit set to `1` in common with the interaction mask of `a`. /// In other words, interactions are allowed between two filter iff. the following condition is met: -/// ```rust +/// ```ignore /// ((self.0 >> 16) & rhs.0) != 0 && ((rhs.0 >> 16) & self.0) != 0 /// ``` pub struct InteractionGroups(pub u32); -- cgit