diff options
| author | Tshepang Mbambo <tshepang@gmail.com> | 2025-03-08 22:58:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-08 22:58:09 +0200 |
| commit | 2391f1038c78ffebfaa7eb765bfd9b71352d3ae6 (patch) | |
| tree | 0bde04f360ea6e7f84268bcc70d8c717f3f873d1 | |
| parent | 515be00f0c4395e7df030253c23ebb445f8e3600 (diff) | |
| download | rust-2391f1038c78ffebfaa7eb765bfd9b71352d3ae6.tar.gz rust-2391f1038c78ffebfaa7eb765bfd9b71352d3ae6.zip | |
fix text
- There is more than just target and stage - There is only 3 stages, so don't mention them specially
| -rw-r--r-- | src/doc/rustc-dev-guide/src/tests/directives.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/directives.md b/src/doc/rustc-dev-guide/src/tests/directives.md index 00bb2bc4dbb..934f79851a7 100644 --- a/src/doc/rustc-dev-guide/src/tests/directives.md +++ b/src/doc/rustc-dev-guide/src/tests/directives.md @@ -122,8 +122,7 @@ for more details. These directives are used to ignore the test in some situations, which means the test won't be compiled or run. -* `ignore-X` where `X` is a target detail or stage will ignore the test - accordingly (see below) +* `ignore-X` where `X` is a target detail or other criteria on which to ignore the test (see below) * `only-X` is like `ignore-X`, but will *only* run the test on that target or stage * `ignore-test` always ignores the test. This can be used to temporarily disable |
