diff options
Diffstat (limited to 'docs/src')
| -rw-r--r-- | docs/src/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/src/lib.rs b/docs/src/lib.rs index 5670fa6f..4ee6d50d 100644 --- a/docs/src/lib.rs +++ b/docs/src/lib.rs @@ -249,14 +249,15 @@ fn category_page(resolver: &dyn Resolver, category: Category) -> PageModel { let mut skip = HashSet::new(); if category == MATH { - // Already documented in the text category. - skip.insert("text"); skip = GROUPS .iter() .filter(|g| g.category == category.name()) .flat_map(|g| &g.filter) .map(|s| s.as_str()) .collect(); + + // Already documented in the text category. + skip.insert("text"); } // Add values and types. |
