diff options
| -rw-r--r-- | crates/typst-library/src/layout/page.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/crates/typst-library/src/layout/page.rs b/crates/typst-library/src/layout/page.rs index 0964dccd..af6ad642 100644 --- a/crates/typst-library/src/layout/page.rs +++ b/crates/typst-library/src/layout/page.rs @@ -75,9 +75,10 @@ pub struct PageElem { /// The height of the page. /// /// If this is set to `{auto}`, page breaks can only be triggered manually - /// by inserting a [page break]($pagebreak). Most examples throughout this - /// documentation use `{auto}` for the height of the page to dynamically - /// grow and shrink to fit their content. + /// by inserting a [page break]($pagebreak) or by adding another non-empty + /// page set rule. Most examples throughout this documentation use `{auto}` + /// for the height of the page to dynamically grow and shrink to fit their + /// content. #[resolve] #[parse( args.named("height")? |
