This commit is contained in:
Laurenz 2023-11-19 19:13:54 +01:00
parent c641044380
commit b479be8e9e
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
//! order-independent and thus much better suited for further processing than
//! the raw markup.
//! - **Typesetting:**
//! Next, the content is [typeset] into a [document] containing one [frame]
//! Next, the content is [layouted] 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 PDF,
@ -26,7 +26,7 @@
//! [evaluate]: eval::eval
//! [module]: eval::Module
//! [content]: model::Content
//! [typeset]: model::typeset
//! [layouted]: model::layout
//! [document]: doc::Document
//! [frame]: doc::Frame

View File

@ -102,7 +102,7 @@ pub fn layout(
/// A virtual typesetter.
///
/// Holds the state needed to [typeset] content.
/// Holds the state needed to [layout] content.
pub struct Vt<'a> {
/// The compilation environment.
pub world: Tracked<'a, dyn World + 'a>,