diff options
| author | frozolotl <44589151+frozolotl@users.noreply.github.com> | 2024-02-14 12:50:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-14 11:50:40 +0000 |
| commit | 8a2527788c33dd41ddefaad4c47a01d9442d898e (patch) | |
| tree | 8b4f8872dbbd425a215e66338fb3141c026fe85a /crates/typst-cli/src/main.rs | |
| parent | 52571dd9efed3a76db85123781e27f96598dc4b3 (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.rs | 2 |
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"))] |
