From 09fe24c7f6fdd1edfac57a3c424503c060170f32 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Sun, 27 Nov 2016 11:29:43 -0500 Subject: [PATCH] Fix a name we changed but missed a spot Fixes #336. --- src/ch07-02-controlling-visibility-with-pub.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-02-controlling-visibility-with-pub.md b/src/ch07-02-controlling-visibility-with-pub.md index 805f0c9..fcca9c0 100644 --- a/src/ch07-02-controlling-visibility-with-pub.md +++ b/src/ch07-02-controlling-visibility-with-pub.md @@ -275,7 +275,7 @@ errors, then compile to see if you’re right and use the privacy rules to understand why. * What if the `inside` module was public? -* What if `outside` was public and `inside` was private? +* What if `outermost` was public and `inside` was private? * What if, in the body of `inner_function`, you called `::outermost::middle_secret_function()`? (The two colons at the beginning mean that we want to refer to the namespaces starting from the root