about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-09-07 11:16:20 -0400
committerNiko Matsakis <niko@alum.mit.edu>2018-09-11 12:02:58 -0400
commit6010623cd4a36398450aedb0742dce75ddd6b251 (patch)
treefd1cc0c936df06d98ab60d2035872d05f72a2fed /src/doc/rustc-dev-guide
parent8ca5450de8ceced9e429df34f6d9adcbf24f2c87 (diff)
downloadrust-6010623cd4a36398450aedb0742dce75ddd6b251.tar.gz
rust-6010623cd4a36398450aedb0742dce75ddd6b251.zip
remove silly `note:`
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/how-to-build-and-run.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/how-to-build-and-run.md b/src/doc/rustc-dev-guide/src/how-to-build-and-run.md
index 17c883ffc80..a4e6cc0f05d 100644
--- a/src/doc/rustc-dev-guide/src/how-to-build-and-run.md
+++ b/src/doc/rustc-dev-guide/src/how-to-build-and-run.md
@@ -223,7 +223,8 @@ using `--keep-stage 1`** -- for example, strange [ICEs](appendix/glossary.html)
 panics. In that case, you should simply remove the `--keep-stage 1`
 from the command and rebuild.  That ought to fix the problem.
 
-Note: you can also use `--keep-stage 1` when running tests. Something like this:
+You can also use `--keep-stage 1` when running tests. Something like
+this:
 
 - Initial test run: `./x.py test -i --stage 1 src/test/ui`
 - Subsequent test run: `./x.py test -i --stage 1 src/test/ui --keep-stage 1`