diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2019-03-28 20:19:50 -0700 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2019-03-28 20:19:50 -0700 |
| commit | b5690c2cb86afc48e958e0d58ff1916c75f65b66 (patch) | |
| tree | 636398376ba06512e91a442c812fd9a2e8b751eb | |
| parent | 8fad69c2001ebe78d67e193f05969bb6f681b109 (diff) | |
| download | rust-b5690c2cb86afc48e958e0d58ff1916c75f65b66.tar.gz rust-b5690c2cb86afc48e958e0d58ff1916c75f65b66.zip | |
Fix MultilineAnnotation field name
| -rw-r--r-- | src/librustc_errors/snippet.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_errors/snippet.rs b/src/librustc_errors/snippet.rs index 60ee0c25727..a0af604026d 100644 --- a/src/librustc_errors/snippet.rs +++ b/src/librustc_errors/snippet.rs @@ -18,7 +18,7 @@ pub struct MultilineAnnotation { pub end_col: usize, pub is_primary: bool, pub label: Option<String>, - pub overlaps: bool, + pub overlaps_exactly: bool, } impl MultilineAnnotation { |
