From db7a6044b4450f63d96dbbc184b74a0384ab10d2 Mon Sep 17 00:00:00 2001 From: Andrew Jones <49015+ahjones@users.noreply.github.com> Date: Fri, 24 Feb 2023 15:27:24 +0000 Subject: [PATCH] Remove extraneous trailing parenthesis (#453) The text currently looks like this: > See the Rust Reference). And should look like this: > See the Rust Reference. Closer #452 --- src/modules/visibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/visibility.md b/src/modules/visibility.md index 13a2c4b0..2525f2ad 100644 --- a/src/modules/visibility.md +++ b/src/modules/visibility.md @@ -40,7 +40,7 @@ fn main() { Additionally, there are advanced `pub(...)` specifiers to restrict the scope of public visibility. -* See the [Rust Reference](https://doc.rust-lang.org/reference/visibility-and-privacy.html#pubin-path-pubcrate-pubsuper-and-pubself)). +* See the [Rust Reference](https://doc.rust-lang.org/reference/visibility-and-privacy.html#pubin-path-pubcrate-pubsuper-and-pubself). * Configuring `pub(crate)` visibility is a common pattern. * Less commonly, you can give visibility to a specific path. * In any case, visibility must be granted to an ancestor module (and all of its descendants).