diff options
| author | Eric Findlay <e.findlay@protonmail.ch> | 2018-06-17 11:35:53 +0900 |
|---|---|---|
| committer | Eric Findlay <e.findlay@protonmail.ch> | 2018-06-17 11:35:53 +0900 |
| commit | 1eff1d414f323de3dfa2e378f289a87e74296aeb (patch) | |
| tree | 3ce8e9fb00ac58757b2533b33629cd9156f3992d | |
| parent | 68da15eae9c9cd2cb7a544f895105eb067d4b1c9 (diff) | |
Fixed minor error in Compiler Error Index, E0603.
| -rw-r--r-- | src/librustc_resolve/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_resolve/diagnostics.rs b/src/librustc_resolve/diagnostics.rs index f0ef07276f6..537333380fa 100644 --- a/src/librustc_resolve/diagnostics.rs +++ b/src/librustc_resolve/diagnostics.rs @@ -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 ``` |
