mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-25 23:04:17 -05:00
Fix typo
This commit is contained in:
parent
a561a0f7f0
commit
2b01811fe9
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ If you didn't already initialize Rustlings, please initialize it in another dire
|
||||||
if let Err(e) = create_dir(rustlings_path) {
|
if let Err(e) = create_dir(rustlings_path) {
|
||||||
if e.kind() == ErrorKind::AlreadyExists {
|
if e.kind() == ErrorKind::AlreadyExists {
|
||||||
bail!(
|
bail!(
|
||||||
"A directory with the name `rustligs` already exists in the current directory.
|
"A directory with the name `rustlings` already exists in the current directory.
|
||||||
You probably already initialized Rustlings.
|
You probably already initialized Rustlings.
|
||||||
Run `cd rustlings`
|
Run `cd rustlings`
|
||||||
Then run `rustlings` again"
|
Then run `rustlings` again"
|
||||||
|
|
Loading…
Reference in a new issue