about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2023-04-22 13:49:13 +0200
committerGitHub <noreply@github.com>2023-04-22 20:49:13 +0900
commit6a1ec81e08adddfbd57a4833a0cdceb87ed6ff78 (patch)
tree0b12c2acbe3dabce2d90312877adbd88d5e448dc /src/doc/rustc-dev-guide
parent624f9293f0b7483668cbe32aba29d365600e9ab7 (diff)
downloadrust-6a1ec81e08adddfbd57a4833a0cdceb87ed6ff78.tar.gz
rust-6a1ec81e08adddfbd57a4833a0cdceb87ed6ff78.zip
fix typo (#1674)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/suggest-tests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/suggest-tests.md b/src/doc/rustc-dev-guide/src/tests/suggest-tests.md
index 70d48bf708a..f6b6d1537b1 100644
--- a/src/doc/rustc-dev-guide/src/tests/suggest-tests.md
+++ b/src/doc/rustc-dev-guide/src/tests/suggest-tests.md
@@ -50,6 +50,6 @@ The following steps should serve as a rough guide to add suggestions to
    as either static or dynamic.
 3. Implement the suggestion. If it is dynamic then a test is highly recommended,
    to verify that your logic is correct and to give an example of the suggestion.
-   See the [tests.rs](https://github.com/rust-lang/rust/blob/master/src/tools/suggest-tests/src/static_suggestions.rs)
+   See the [tests.rs](https://github.com/rust-lang/rust/blob/master/src/tools/suggest-tests/src/tests.rs)
    file.
 4. Open a PR implementing your suggestion. **(TODO: add example PR)**