fix is_module check
This commit is contained in:
parent
a9ff7ac9c3
commit
05121a22e6
@ -169,11 +169,11 @@ pub(super) fn root_path(&self) -> String {
|
||||
|
||||
fn render_item(&self, it: &clean::Item, is_module: bool) -> String {
|
||||
let mut title = String::new();
|
||||
if is_module {
|
||||
if !is_module {
|
||||
title.push_str(&it.name.unwrap().as_str());
|
||||
}
|
||||
if !it.is_primitive() && !it.is_keyword() {
|
||||
if is_module {
|
||||
if !is_module {
|
||||
title.push_str(" in ");
|
||||
}
|
||||
// No need to include the namespace for primitive types and keywords
|
||||
@ -597,7 +597,7 @@ fn mod_item_in(&mut self, item: &clean::Item, item_name: &str) -> Result<(), Err
|
||||
|
||||
info!("Recursing into {}", self.dst.display());
|
||||
|
||||
let buf = self.render_item(item, false);
|
||||
let buf = self.render_item(item, true);
|
||||
// buf will be empty if the module is stripped and there is no redirect for it
|
||||
if !buf.is_empty() {
|
||||
self.shared.ensure_dir(&self.dst)?;
|
||||
@ -640,7 +640,7 @@ fn item(&mut self, item: clean::Item) -> Result<(), Error> {
|
||||
self.render_redirect_pages = item.is_stripped();
|
||||
}
|
||||
|
||||
let buf = self.render_item(&item, true);
|
||||
let buf = self.render_item(&item, false);
|
||||
// buf will be empty if the item is stripped and there is no redirect for it
|
||||
if !buf.is_empty() {
|
||||
let name = item.name.as_ref().unwrap();
|
||||
|
Loading…
Reference in New Issue
Block a user