From f40ebe4fa682eec2106e606106493ef70510d6fd Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 17 Jan 2021 15:37:20 +0100 Subject: [PATCH] Fix typo --- src/rustdoc-internals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustdoc-internals.md b/src/rustdoc-internals.md index 895263b53..f739ff82a 100644 --- a/src/rustdoc-internals.md +++ b/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.