diff options
| author | Daniel Drodt <132357467+Drodt@users.noreply.github.com> | 2024-12-05 12:21:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-05 11:21:44 +0000 |
| commit | 8e4f5f21e0e52fb4ac88ab769e585af811d9b56e (patch) | |
| tree | 7b930722d6a1b1d9562860f37a43dbf4f7f32241 | |
| parent | 79a7a6bf77037e0b6124193ebc8b3c5e8a0528bb (diff) | |
Fix warning for HTML export to reflect renaming of --feature to --features (#5530)
| -rw-r--r-- | crates/typst/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst/src/lib.rs b/crates/typst/src/lib.rs index b76815b9..358a9ab1 100644 --- a/crates/typst/src/lib.rs +++ b/crates/typst/src/lib.rs @@ -246,7 +246,7 @@ fn warn_or_error_for_html( } else { bail!( Span::detached(), - "html export is only available when `--feature html` is passed"; + "html export is only available when `--features html` is passed"; hint: "html export is under active development and incomplete"; hint: "see {ISSUE} for more information" ); |
