Skip to content

Commit 635e506

Browse files
committed
docs: Recommend rustlings watch as default
1 parent 75d8c7e commit 635e506

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ curl -L https://git.io/rustlings | bash -s mypath/
3131

3232
This will install Rustlings and give you access to the `rustlings` command. Run it to get started!
3333

34-
## Windows/Manually
34+
## Manually
3535

3636
Basically: Clone the repository, checkout to the latest tag, run `cargo install`.
3737

@@ -51,16 +51,16 @@ The exercises are sorted by topic and can be found in the subdirectory `rustling
5151
The task is simple. Most exercises contain an error that keep it from compiling, and it's up to you to fix it! Some exercises are also ran as tests, but rustlings handles them all the same. To run the exercises in the recommended order, execute:
5252

5353
```bash
54-
rustlings verify
54+
rustlings watch
5555
```
5656

57-
This will try to verify the completion of every exercise in a predetermined order (what we think is best for newcomers). If you don't want to rerun `verify` every time you change a file, you can run:
57+
This will try to verify the completion of every exercise in a predetermined order (what we think is best for newcomers). It will also rerun automatically every time you change a file in the `exercises/` directory. If you want to only run it once, you can use:
5858

5959
```bash
60-
rustlings watch
60+
rustlings verify
6161
```
6262

63-
This will do the same as verify, but won't quit after running and instead automatically rerun as soon as you change a file in the `exercises/` directory.
63+
This will do the same as watch, but it'll quit after running.
6464

6565
In case you want to go by your own order, or want to only verify a single exercise, you can run:
6666

default_out.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ cargo install --path .
1414
If you've done all of this (or even most of it), congrats! You're ready
1515
to start working with Rust.
1616

17-
To get started, run `rustlings verify` in order to get the first exercise.
17+
To get started, run `rustlings watch` in order to get the first exercise.
1818
Make sure to have your editor open!

0 commit comments

Comments
 (0)