diff options
Diffstat (limited to 'src/eval')
| -rw-r--r-- | src/eval/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/mod.rs b/src/eval/mod.rs index 2839baff..4a820a84 100644 --- a/src/eval/mod.rs +++ b/src/eval/mod.rs @@ -101,7 +101,7 @@ impl Eval for MarkupNode { Ok(match self { Self::Space => Content::Space, Self::Parbreak => Content::Parbreak, - Self::Linebreak(soft) => Content::Linebreak(*soft), + Self::Linebreak(justified) => Content::Linebreak(*justified), Self::Text(text) => Content::Text(text.clone()), Self::Quote(double) => Content::Quote(*double), Self::Strong(strong) => strong.eval(ctx, scp)?, |
