Fixed minor error in Compiler Error Index, E0603.

This commit is contained in:
Eric Findlay 2018-06-17 11:35:53 +09:00
parent 68da15eae9
commit 1eff1d414f

View File

@ -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
```