about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2019-10-15 22:13:15 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-10-17 23:14:34 -0500
commit00b5a6ecdeacfaa8df09323ea5a3eff159efbafa (patch)
tree3e4f842e54d510a41c1458e6ff65ac4c1053822b /src/doc/rustc-dev-guide
parentee64b802c424f8996f2f71d95d8ff585d0e48881 (diff)
downloadrust-00b5a6ecdeacfaa8df09323ea5a3eff159efbafa.tar.gz
rust-00b5a6ecdeacfaa8df09323ea5a3eff159efbafa.zip
I prefers long options in documentation
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/README.md b/src/doc/rustc-dev-guide/README.md
index 42e7e44a4b5..a5481e82c7f 100644
--- a/src/doc/rustc-dev-guide/README.md
+++ b/src/doc/rustc-dev-guide/README.md
@@ -72,7 +72,8 @@ To make a PR, the following steps are useful.
 git submodule update --remote src/doc/rustc-guide
 git add -u
 git commit -m "Update rustc-guide"
-./x.py test -i --stage 1 src/doc/rustc-guide # This is optional and should succeed anyway
+# Note that you can use -i, which is short for --incremental, in the following command
+./x.py test --incremental --stage 1 src/doc/rustc-guide # This is optional and should succeed anyway
 # Open a PR in rust-lang/rust
 ```