auto merge of #17420 : anchovieshat/rust/grammar, r=huonw

Fix grammar (double "note") in situations like:

src/reader/events.rs:120:5: 120:25 **note: note** conflicting type here
src/reader/events.rs:120     Error(common::Error)
This commit is contained in:
bors 2014-09-21 05:45:31 +00:00
commit 1fb838d994
1 changed files with 2 additions and 2 deletions

View File

@ -2928,7 +2928,7 @@ impl<'a> Resolver<'a> {
Some(span) => {
self.session
.span_note(span,
"note conflicting value here");
"conflicting value here");
}
}
}
@ -2951,7 +2951,7 @@ impl<'a> Resolver<'a> {
Some(span) => {
self.session
.span_note(span,
"note conflicting type here")
"conflicting type here")
}
}
}