Skip to content

Commit 337c64e

Browse files
committed
fix lacking spaces
1 parent 37a202c commit 337c64e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/tests/intro.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ including:
6363

6464
Example: `./x.py test src/tools/tidy`
6565

66-
- **Unittests** – The Rust standard library and many of the Rust packages
66+
- **Unit tests** – The Rust standard library and many of the Rust packages
6767
include typical Rust `#[test]` unittests. Under the hood, `x.py` will run
6868
`cargo test` on each package to run all the tests.
6969

7070
Example: `./x.py test src/libstd`
7171

72-
- **Doctests** – Example code embedded within Rust documentation is executed
72+
- **Doc tests** – Example code embedded within Rust documentation is executed
7373
via `rustdoc --test`. Examples:
7474

7575
`./x.py test src/doc` – Runs `rustdoc --test` for all documentation in
@@ -78,12 +78,12 @@ including:
7878
`./x.py test --doc src/libstd` – Runs `rustdoc --test` on the standard
7979
library.
8080

81-
- **Linkchecker** – A small tool for verifying `href` links within
81+
- **Link checker** – A small tool for verifying `href` links within
8282
documentation.
8383

8484
Example: `./x.py test src/tools/linkchecker`
8585

86-
- **Distcheck** – This verifies that the source distribution tarball created
86+
- **Dist check** – This verifies that the source distribution tarball created
8787
by the build system will unpack, build, and run all tests.
8888

8989
Example: `./x.py test distcheck`
@@ -93,7 +93,7 @@ including:
9393
directory). This includes things such as cargo, clippy, rustfmt, rls, miri,
9494
bootstrap (testing the Rust build system itself), etc.
9595

96-
- **Cargotest** – This is a small tool which runs `cargo test` on a few
96+
- **Cargo test** – This is a small tool which runs `cargo test` on a few
9797
significant projects (such as `servo`, `ripgrep`, `tokei`, etc.) just to
9898
ensure there aren't any significant regressions.
9999

0 commit comments

Comments
 (0)