From e19ceee2be3b0a101538906888e0b6a4fcfc3510 Mon Sep 17 00:00:00 2001 From: Pin Loon Lee Date: Sat, 15 Aug 2026 12:18:23 +0800 Subject: [PATCH] ch07-04: fix missing scope of front_of_house --- 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 83820e2fee..2f9b104435 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 @@ -48,7 +48,7 @@ The compiler error shows that the shortcut no longer applies within the Notice there’s also a warning that the `use` is no longer used in its scope! To fix this problem, move the `use` within the `customer` module too, or reference -the shortcut in the parent module with `super::hosting` within the child +the shortcut in the parent module with `super::front_of_house::hosting` within the child `customer` module. ### Creating Idiomatic `use` Paths