about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authormark <markm@cs.wisc.edu>2018-07-08 20:24:09 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-07-09 21:45:49 -0500
commitdce30e99dc02a0da09c69da4cd7f2afc57906152 (patch)
treeba2339bbff07df46a697535e59dbdf43e127b128 /src/doc/rustc-dev-guide
parent114278adc0f45c1729f5f018cad4b515b9601340 (diff)
downloadrust-dce30e99dc02a0da09c69da4cd7f2afc57906152.tar.gz
rust-dce30e99dc02a0da09c69da4cd7f2afc57906152.zip
fix lacking spaces
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/intro.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/intro.md b/src/doc/rustc-dev-guide/src/tests/intro.md
index 69d9ed057fb..bfe084618d4 100644
--- a/src/doc/rustc-dev-guide/src/tests/intro.md
+++ b/src/doc/rustc-dev-guide/src/tests/intro.md
@@ -63,13 +63,13 @@ including:
 
   Example: `./x.py test src/tools/tidy`
 
-- **Unittests** – The Rust standard library and many of the Rust packages
+- **Unit tests** – The Rust standard library and many of the Rust packages
   include typical Rust `#[test]` unittests.  Under the hood, `x.py` will run
   `cargo test` on each package to run all the tests.
 
   Example: `./x.py test src/libstd`
 
-- **Doctests** – Example code embedded within Rust documentation is executed
+- **Doc tests** – Example code embedded within Rust documentation is executed
   via `rustdoc --test`.  Examples:
 
   `./x.py test src/doc` – Runs `rustdoc --test` for all documentation in
@@ -78,12 +78,12 @@ including:
   `./x.py test --doc src/libstd` – Runs `rustdoc --test` on the standard
   library.
 
-- **Linkchecker** – A small tool for verifying `href` links within
+- **Link checker** – A small tool for verifying `href` links within
   documentation.
 
   Example: `./x.py test src/tools/linkchecker`
 
-- **Distcheck** – This verifies that the source distribution tarball created
+- **Dist check** – This verifies that the source distribution tarball created
   by the build system will unpack, build, and run all tests.
 
   Example: `./x.py test distcheck`
@@ -93,7 +93,7 @@ including:
   directory).  This includes things such as cargo, clippy, rustfmt, rls, miri,
   bootstrap (testing the Rust build system itself), etc.
 
-- **Cargotest** – This is a small tool which runs `cargo test` on a few
+- **Cargo test** – This is a small tool which runs `cargo test` on a few
   significant projects (such as `servo`, `ripgrep`, `tokei`, etc.) just to
   ensure there aren't any significant regressions.