diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-11-08 15:35:05 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-11-08 15:35:05 +0100 |
| commit | ccbe901cb70f963a546b0950543f77d5536cce67 (patch) | |
| tree | 4454410650e5e788fc03a6edde127c829632bc40 /crates/typst-pdf/src/lib.rs | |
| parent | 8be482c2c2f8316346be192b9854c647ee2f1406 (diff) | |
Make `PdfContext` private again
Diffstat (limited to 'crates/typst-pdf/src/lib.rs')
| -rw-r--r-- | crates/typst-pdf/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-pdf/src/lib.rs b/crates/typst-pdf/src/lib.rs index 92c84495..112b5a7d 100644 --- a/crates/typst-pdf/src/lib.rs +++ b/crates/typst-pdf/src/lib.rs @@ -61,7 +61,7 @@ pub fn pdf( } /// Context for exporting a whole PDF document. -pub struct PdfContext<'a> { +struct PdfContext<'a> { /// The document that we're currently exporting. document: &'a Document, /// An introspector for the document, used to resolve locations links and |
