summaryrefslogtreecommitdiff
path: root/src/layout/document.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-11-24 16:12:41 +0100
committerLaurenz <laurmaedje@gmail.com>2020-11-24 16:12:41 +0100
commit761931405c68efe0a35d96524df797dda7155723 (patch)
tree31ac2153dc0e5a5dc4fb4f46f839caed8066542a /src/layout/document.rs
parentf105663037c44740b5aa02dea72a9b368bc003e0 (diff)
Use newly stabilized intra doc links ↩
Diffstat (limited to 'src/layout/document.rs')
-rw-r--r--src/layout/document.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/layout/document.rs b/src/layout/document.rs
index 52d0d124..112457d6 100644
--- a/src/layout/document.rs
+++ b/src/layout/document.rs
@@ -23,9 +23,7 @@ impl Document {
pub struct Pages {
/// The size of the pages.
pub size: Size,
- /// The layout node that produces the actual pages (typically a [stack]).
- ///
- /// [stack]: struct.Stack.html
+ /// The layout node that produces the actual pages (typically a [`Stack`]).
pub child: LayoutNode,
}