1
Fork 0

Use cache access levels

This commit is contained in:
Guillaume Gomez 2021-03-02 11:59:37 +01:00
parent e4287992a7
commit 1683cb12e4

View file

@ -53,7 +53,7 @@ impl crate::doctest::Tester for Tests {
}
crate fn should_have_doc_example(cx: &DocContext<'_>, item: &clean::Item) -> bool {
if !cx.renderinfo.access_levels.is_public(item.def_id)
if !cx.cache.access_levels.is_public(item.def_id)
|| matches!(
*item.kind,
clean::StructFieldItem(_)