summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/library')
-rw-r--r--src/library/text/par.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/text/par.rs b/src/library/text/par.rs
index 17fcea75..4694993e 100644
--- a/src/library/text/par.rs
+++ b/src/library/text/par.rs
@@ -168,8 +168,8 @@ pub struct LinebreakNode;
#[node]
impl LinebreakNode {
fn construct(_: &mut Context, args: &mut Args) -> TypResult<Content> {
- let soft = args.named("soft")?.unwrap_or(false);
- Ok(Content::Linebreak(soft))
+ let justified = args.named("justified")?.unwrap_or(false);
+ Ok(Content::Linebreak(justified))
}
}