From 8e4f5f21e0e52fb4ac88ab769e585af811d9b56e Mon Sep 17 00:00:00 2001 From: Daniel Drodt <132357467+Drodt@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:21:44 +0100 Subject: [PATCH] Fix warning for HTML export to reflect renaming of --feature to --features (#5530) --- crates/typst/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst/src/lib.rs b/crates/typst/src/lib.rs index b76815b92..358a9ab12 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" );