about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-03-28 20:19:50 -0700
committerEsteban Küber <esteban@kuber.com.ar>2019-03-28 20:19:50 -0700
commitb5690c2cb86afc48e958e0d58ff1916c75f65b66 (patch)
tree636398376ba06512e91a442c812fd9a2e8b751eb
parent8fad69c2001ebe78d67e193f05969bb6f681b109 (diff)
downloadrust-b5690c2cb86afc48e958e0d58ff1916c75f65b66.tar.gz
rust-b5690c2cb86afc48e958e0d58ff1916c75f65b66.zip
Fix MultilineAnnotation field name
-rw-r--r--src/librustc_errors/snippet.rs2
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 {