summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <819880950@qq.com>2019-06-09 14:44:16 +0200
committerliv <819880950@qq.com>2019-06-09 14:44:16 +0200
commit635e506c16811763add3d8e4ace7401d5777678c (patch)
treec8eade2097d8659eaad0654cd1ad43a1dca9e227
parent75d8c7e3cc6c8ced1d3eb563375e7925ab7fdb6b (diff)
docs: Recommend `rustlings watch` as default
-rw-r--r--README.md10
-rw-r--r--default_out.txt2
2 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index ff3e092..7cd22c4 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ curl -L https://git.io/rustlings | bash -s mypath/
This will install Rustlings and give you access to the `rustlings` command. Run it to get started!
-## Windows/Manually
+## Manually
Basically: Clone the repository, checkout to the latest tag, run `cargo install`.
@@ -51,16 +51,16 @@ The exercises are sorted by topic and can be found in the subdirectory `rustling
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:
```bash
-rustlings verify
+rustlings watch
```
-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:
+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:
```bash
-rustlings watch
+rustlings verify
```
-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.
+This will do the same as watch, but it'll quit after running.
In case you want to go by your own order, or want to only verify a single exercise, you can run:
diff --git a/default_out.txt b/default_out.txt
index 62fdd51..6c437ea 100644
--- a/default_out.txt
+++ b/default_out.txt
@@ -14,5 +14,5 @@ cargo install --path .
If you've done all of this (or even most of it), congrats! You're ready
to start working with Rust.
-To get started, run `rustlings verify` in order to get the first exercise.
+To get started, run `rustlings watch` in order to get the first exercise.
Make sure to have your editor open! \ No newline at end of file