about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMartin Geisler <martin@geisler.net>2021-01-17 15:50:04 +0100
committerGitHub <noreply@github.com>2021-01-17 11:50:04 -0300
commit940b3b1b5f24d16c58c40a78117dc9e7e1747c97 (patch)
treed4ae0021343b0329d98f0cc390e8306a07c453f9 /src/doc/rustc-dev-guide
parent3c2fdf47518549ddb76c6fd0c8d704b19219df7a (diff)
downloadrust-940b3b1b5f24d16c58c40a78117dc9e7e1747c97.tar.gz
rust-940b3b1b5f24d16c58c40a78117dc9e7e1747c97.zip
Fix typo (#1027)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/rustdoc-internals.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/rustdoc-internals.md b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
index 895263b537f..f739ff82a1f 100644
--- a/src/doc/rustc-dev-guide/src/rustdoc-internals.md
+++ b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
@@ -162,7 +162,7 @@ documentation in `test.rs`, but instead of going through the full clean and
 render process, it runs a much simpler crate walk to grab *just* the
 hand-written documentation. Combined with the aforementioned
 "`find_testable_code`" in `html/markdown.rs`, it builds up a collection of
-tests to run before handing them off to the test test runner. One notable
+tests to run before handing them off to the test runner. One notable
 location in `test.rs` is the function `make_test`, which is where hand-written
 doctests get transformed into something that can be executed.