Skip to content

Commit

Permalink
Fix use of itertools
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed May 28, 2024
1 parent 640d8c9 commit 5dc997d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/re_types_builder/src/codegen/docs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ fn index_page(kind: ObjectKind, order: u64, prelude: &str, objects: &[&Object])
a.doc_category().cmp(&b.doc_category())
}
})
.group_by(|o| o.doc_category())
.chunk_by(|o| o.doc_category())
{
if category.is_some() {
any_category = true;
Expand Down

0 comments on commit 5dc997d

Please sign in to comment.