summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-08 15:33:49 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-08 15:33:49 +0100
commit8be482c2c2f8316346be192b9854c647ee2f1406 (patch)
tree81d54c2209bb81ebafc5c7ca13362432c4abf01d
parentba05164bb67071bfaab858daf2fb2b3387cc17c5 (diff)
Fix intradoc links
-rw-r--r--crates/typst/src/lib.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/typst/src/lib.rs b/crates/typst/src/lib.rs
index 1e55385c..bae1e4b4 100644
--- a/crates/typst/src/lib.rs
+++ b/crates/typst/src/lib.rs
@@ -16,8 +16,8 @@
//! Next, the content is [typeset] into a [document] containing one [frame]
//! per page with items at fixed positions.
//! - **Exporting:**
-//! These frames can finally be exported into an output format (currently
-//! supported are [PDF] and [raster images]).
+//! These frames can finally be exported into an output format (currently PDF,
+//! PNG, or SVG).
//!
//! [tokens]: syntax::SyntaxKind
//! [parsed]: syntax::parse
@@ -29,8 +29,6 @@
//! [typeset]: model::typeset
//! [document]: doc::Document
//! [frame]: doc::Frame
-//! [PDF]: export::pdf
-//! [raster images]: export::render
#![recursion_limit = "1000"]
#![allow(clippy::comparison_chain)]