summaryrefslogtreecommitdiff
path: root/crates/typst-cli/src/main.rs
diff options
context:
space:
mode:
authorfrozolotl <44589151+frozolotl@users.noreply.github.com>2024-02-14 12:50:40 +0100
committerGitHub <noreply@github.com>2024-02-14 11:50:40 +0000
commit8a2527788c33dd41ddefaad4c47a01d9442d898e (patch)
tree8b4f8872dbbd425a215e66338fb3141c026fe85a /crates/typst-cli/src/main.rs
parent52571dd9efed3a76db85123781e27f96598dc4b3 (diff)
Fix watches on moves and removes (#3371)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'crates/typst-cli/src/main.rs')
-rw-r--r--crates/typst-cli/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-cli/src/main.rs b/crates/typst-cli/src/main.rs
index 5e1ef47c..71b3dd38 100644
--- a/crates/typst-cli/src/main.rs
+++ b/crates/typst-cli/src/main.rs
@@ -77,7 +77,7 @@ fn print_error(msg: &str) -> io::Result<()> {
write!(output, "error")?;
output.reset()?;
- writeln!(output, ": {msg}.")
+ writeln!(output, ": {msg}")
}
#[cfg(not(feature = "self-update"))]