From fa3a3e4d5d3578f51eaf66d111b9b832332fe2d1 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Tue, 15 Oct 2019 22:13:15 +0200 Subject: [PATCH] I prefers long options in documentation --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 42e7e44a4..a5481e82c 100644 --- a/README.md +++ b/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 ```