diff options
| author | mo8it <mo8it@proton.me> | 2024-04-16 03:18:06 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-04-16 03:18:06 +0200 |
| commit | c07cf5bffe43402ced908dc315e5b8ee3e52bdcc (patch) | |
| tree | 7e06109756af0997b0b675db582deec98181ba51 /src/dev/init.rs | |
| parent | df448c069cae593d5eec37aa5b07c8103ae0f9b9 (diff) | |
Fix typo
Diffstat (limited to 'src/dev/init.rs')
| -rw-r--r-- | src/dev/init.rs | 4 |
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, |
