From fcf64d0ee0c2c48580f5d3576f8d53df4922c5e9 Mon Sep 17 00:00:00 2001 From: frozolotl <44589151+frozolotl@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:21:17 +0100 Subject: [PATCH] Fix typo (#3412) --- crates/typst-cli/src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst-cli/src/world.rs b/crates/typst-cli/src/world.rs index 55e7183b7..26bca3251 100644 --- a/crates/typst-cli/src/world.rs +++ b/crates/typst-cli/src/world.rs @@ -398,7 +398,7 @@ fn decode_utf8(buf: &[u8]) -> FileResult<&str> { pub enum WorldCreationError { /// The input file does not appear to exist. InputNotFound(PathBuf), - /// The input file is not contained withhin the root folder. + /// The input file is not contained within the root folder. InputOutsideRoot, /// The root directory does not appear to exist. RootNotFound(PathBuf),