From 1eec7282c76e0a2bef030a764efece8d0c145ce3 Mon Sep 17 00:00:00 2001 From: sdoering01 <57443123+sdoering01@users.noreply.github.com> Date: Wed, 19 Jan 2022 10:57:25 +0100 Subject: [PATCH] fix(cli.rs): typo (#3248) --- tooling/cli.rs/src/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/cli.rs/src/init.rs b/tooling/cli.rs/src/init.rs index 5700f937e..fb7cdc9bd 100644 --- a/tooling/cli.rs/src/init.rs +++ b/tooling/cli.rs/src/init.rs @@ -104,7 +104,7 @@ impl Options { self.dist_dir = self.dist_dir .or(request_input( - r#"Whe re are your web assets (HTML/CSS/JS) located, relative to the "/src-tauri/tauri.conf.json" file that will be created?"#, + r#"Where are your web assets (HTML/CSS/JS) located, relative to the "/src-tauri/tauri.conf.json" file that will be created?"#, init_defaults.framework.as_ref().map(|f| f.dist_dir()), self.ci)?);