summaryrefslogtreecommitdiff
path: root/src/dev/init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/init.rs')
-rw-r--r--src/dev/init.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/init.rs b/src/dev/init.rs
index d382136..73c2c20 100644
--- a/src/dev/init.rs
+++ b/src/dev/init.rs
@@ -20,7 +20,7 @@ pub fn init() -> Result<()> {
.context("Failed to create the file `rustlings/info.toml`")?;
fs::write(
- "rustligns/Cargo.toml",
+ "rustlings/Cargo.toml",
format!("{CARGO_TOML_COMMENT}{}", crate::init::CARGO_TOML_PACKAGE),
)
.context("Failed to create the file `rustlings/Cargo.toml`")?;
@@ -32,7 +32,7 @@ pub fn init() -> Result<()> {
.context("Failed to create the file `rustlings/README.md`")?;
create_dir("rustlings/.vscode")
- .context("Failed to create the directory `rustligns/.vscode`")?;
+ .context("Failed to create the directory `rustlings/.vscode`")?;
fs::write(
"rustlings/.vscode/extensions.json",
crate::init::VS_CODE_EXTENSIONS_JSON,