Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Jan 16, 2025
1 parent 6954fdd commit 8370382
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/html/pages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ pub enum SymbolPage {
Symbol {
breadcrumbs_ctx: BreadcrumbsCtx,
symbol_group_ctx: SymbolGroupCtx,
toc_ctx: util::ToCCtx,
toc_ctx: Box<util::ToCCtx>,
categories_panel: Option<CategoriesPanelCtx>,
},
Redirect {
Expand Down Expand Up @@ -538,7 +538,7 @@ pub fn generate_symbol_pages_for_module(
generated_pages.push(SymbolPage::Symbol {
breadcrumbs_ctx,
symbol_group_ctx,
toc_ctx,
toc_ctx: Box::new(toc_ctx),
categories_panel,
});

Expand Down Expand Up @@ -571,7 +571,7 @@ pub struct SymbolPageCtx {
pub html_head_ctx: HtmlHeadCtx,
pub symbol_group_ctx: SymbolGroupCtx,
pub breadcrumbs_ctx: BreadcrumbsCtx,
pub toc_ctx: util::ToCCtx,
pub toc_ctx: Box<util::ToCCtx>,
pub disable_search: bool,
pub categories_panel: Option<CategoriesPanelCtx>,
}
Expand Down

0 comments on commit 8370382

Please sign in to comment.