Skip to content

Commit

Permalink
Auto merge of #51605 - ericfindlay:master, r=kennytm
Browse files Browse the repository at this point in the history
Fixed minor error in Compiler Error Index, E0603.
  • Loading branch information
bors committed Jun 18, 2018
2 parents 4f29363 + 1eff1d4 commit c45ae9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_resolve/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,7 @@ mod SomeModule {
// `SomeModule` module.
}
println!("const value: {}", SomeModule::PRIVATE); // error: constant `CONSTANT`
println!("const value: {}", SomeModule::PRIVATE); // error: constant `PRIVATE`
// is private
```
Expand Down

0 comments on commit c45ae9e

Please sign in to comment.