Remove #[internal] annotation for #[synthesized] fields

This commit is contained in:
Malo 2025-05-29 21:13:19 +01:00
parent b847a3d3a8
commit bea97e1f8b
3 changed files with 0 additions and 5 deletions

View File

@ -142,12 +142,10 @@ pub struct BibliographyElem {
pub style: Derived<CslSource, CslStyle>,
/// The language setting where the bibliography is.
#[internal]
#[synthesized]
pub lang: Lang,
/// The region setting where the bibliography is.
#[internal]
#[synthesized]
pub region: Option<Region>,
}

View File

@ -110,12 +110,10 @@ pub struct CiteElem {
pub style: Smart<Derived<CslSource, CslStyle>>,
/// The text language setting where the citation is.
#[internal]
#[synthesized]
pub lang: Lang,
/// The text region setting where the citation is.
#[internal]
#[synthesized]
pub region: Option<Region>,
}

View File

@ -546,7 +546,6 @@ pub struct FigureCaption {
pub counter: Counter,
/// The figure's location.
#[internal]
#[synthesized]
pub figure_location: Location,
}