diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-07-29 17:46:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-29 17:46:57 +0200 |
| commit | f34ba3dcda182d9b9c14cc94fdb48810bf18bef0 (patch) | |
| tree | 667a7aba2f26996c7ada8ce85952c384a1dbd5a1 /src/layout/model.rs | |
| parent | e7ffdde43d09f60238590723c2829554806e23d5 (diff) | |
| parent | 9672d4320052d08b67d497febed4a0ad78bf9252 (diff) | |
Merge pull request #7 from typst/parser-update
Parser update
Diffstat (limited to 'src/layout/model.rs')
| -rw-r--r-- | src/layout/model.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/model.rs b/src/layout/model.rs index 3f1c9e7a..91d21037 100644 --- a/src/layout/model.rs +++ b/src/layout/model.rs @@ -142,7 +142,7 @@ impl<'a> ModelLayouter<'a> { }).await; // Add the errors generated by the model to the error list. - self.feedback.extend_offset(model.span.start, layouted.feedback); + self.feedback.extend_offset(layouted.feedback, model.span.start); for command in layouted.output { self.execute_command(command, model.span).await; |
