Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Oct 25, 2023
1 parent f24fea4 commit 3eba944
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/html/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,10 @@ fn doc_block(doc_nodes: &[crate::DocNode], name: &str) -> String {
DocNodeKind::Function => functions.push(doc_node),
DocNodeKind::Variable => {}
DocNodeKind::Class => {}
DocNodeKind::Enum => {}
DocNodeKind::Enum => content.push_str(&r#enum::render_enum(doc_node)),
DocNodeKind::Interface => {}
DocNodeKind::TypeAlias => {}
DocNodeKind::Namespace => {
content.push_str(&r#enum::render_enum(doc_node))
}
DocNodeKind::Namespace => {}
DocNodeKind::Import => {}
};
}
Expand Down

0 comments on commit 3eba944

Please sign in to comment.