summaryrefslogtreecommitdiff
path: root/src/library/sized.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-11-17 17:09:19 +0100
committerLaurenz <laurmaedje@gmail.com>2021-11-17 17:09:19 +0100
commit89f2e71852e96062ea9b756bf92fbf4e894871b1 (patch)
tree836099ebd17adf30a24fc62464dfdd3d9c248480 /src/library/sized.rs
parent9a800daa82833c57eee04e92c701ca9a05a67d3b (diff)
Align node
Diffstat (limited to 'src/library/sized.rs')
-rw-r--r--src/library/sized.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/sized.rs b/src/library/sized.rs
index 6394b0f4..3089f90b 100644
--- a/src/library/sized.rs
+++ b/src/library/sized.rs
@@ -23,7 +23,7 @@ pub fn block(_: &mut EvalContext, args: &mut Args) -> TypResult<Value> {
/// A node that sizes its child.
#[derive(Debug, Hash)]
pub struct SizedNode {
- /// The node to-be-sized.
+ /// The node to be sized.
pub child: PackedNode,
/// How to size the node horizontally and vertically.
pub sizing: Spec<Option<Linear>>,