From dcd7723bf9eed660352fd1a5ef43c3e3ad987f6a Mon Sep 17 00:00:00 2001 From: FUASHI LOT-BILL Date: Sun, 7 Dec 2025 03:44:21 +0100 Subject: [PATCH] Fix broken link on ch07-04 standard library doc Fixes the issue with the 404 document not found page when accessing the Standard Library documentation link --- src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md b/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md index 2b3d075cb1..b9f2f063ee 100644 --- a/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md +++ b/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md @@ -298,7 +298,7 @@ The glob operator is often used when testing to bring everything under test into the `tests` module; we’ll talk about that in [“How to Write Tests”][writing-tests] in Chapter 11. The glob operator is also sometimes used as part of the prelude pattern: see [the standard library -documentation](../std/prelude/index.html#other-preludes) for more +documentation](https://doc.rust-lang.org/std/prelude/index.html#other-preludes) for more information on that pattern. {{#quiz ../quizzes/ch07-04-use.toml}}