Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac01a53

Browse files
authoredJul 14, 2020
Rollup merge of rust-lang#73720 - GuillaumeGomez:cleanup-e0704, r=Dylan-DPC
Clean up E0704 error explanation r? @Dylan-DPC
2 parents 6dda1d4 + 3e48aae commit ac01a53

File tree

1 file changed

+3
-2
lines changed
  • src/librustc_error_codes/error_codes

1 file changed

+3
-2
lines changed
 

‎src/librustc_error_codes/error_codes/E0704.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
This error indicates that a incorrect visibility restriction was specified.
1+
An incorrect visibility restriction was specified.
22

3-
Example of erroneous code:
3+
Erroneous code example:
44

55
```compile_fail,E0704
66
mod foo {
@@ -12,6 +12,7 @@ mod foo {
1212

1313
To make struct `Bar` only visible in module `foo` the `in` keyword should be
1414
used:
15+
1516
```
1617
mod foo {
1718
pub(in crate::foo) struct Bar {

0 commit comments

Comments
 (0)
Please sign in to comment.