aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide/src/lib.rs')
-rw-r--r--crates/ra_ide/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/lib.rs b/crates/ra_ide/src/lib.rs
index 0fede0d87..45a4b2421 100644
--- a/crates/ra_ide/src/lib.rs
+++ b/crates/ra_ide/src/lib.rs
@@ -105,7 +105,7 @@ pub struct Diagnostic {
105 pub message: String, 105 pub message: String,
106 pub range: TextRange, 106 pub range: TextRange,
107 pub severity: Severity, 107 pub severity: Severity,
108 pub fix: Option<Fix>, 108 pub fix: Option<(Fix, TextRange)>,
109} 109}
110 110
111#[derive(Debug)] 111#[derive(Debug)]