summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorDaniel Drodt <132357467+Drodt@users.noreply.github.com>2024-12-05 12:21:44 +0100
committerGitHub <noreply@github.com>2024-12-05 11:21:44 +0000
commit8e4f5f21e0e52fb4ac88ab769e585af811d9b56e (patch)
tree7b930722d6a1b1d9562860f37a43dbf4f7f32241 /crates
parent79a7a6bf77037e0b6124193ebc8b3c5e8a0528bb (diff)
Fix warning for HTML export to reflect renaming of --feature to --features (#5530)
Diffstat (limited to 'crates')
-rw-r--r--crates/typst/src/lib.rs2
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"
);