Remove misplaced code block boundary

The "Submodules and file naming" section ended with three backticks (` ``` `), which caused the next section to be unformatted instead of using proper Markdown formatting.
This commit is contained in:
Ian Chamberlain 2019-01-22 22:45:41 -05:00 committed by Brian Smith
parent 5f670008e3
commit 7b8bfa745a

View File

@ -31,7 +31,7 @@ non-public (`mod x`, not `pub mod x`) and the enclosing module must re-export,
using `pub use submodule::x`, the items that are intended to be public. This
way, the implementation details that drove the choice to use nested submodules
do not affect the public API.
```
Note that this is only necessary when the module has submodules.