Rename buffer_non_error_diag
as buffer_non_error
.
To match `buffer_error`.
This commit is contained in:
parent
11f32b73e0
commit
f066be5f29
3 changed files with 5 additions and 5 deletions
|
@ -2435,7 +2435,7 @@ mod error {
|
|||
self.buffered.push(t.into_diagnostic());
|
||||
}
|
||||
|
||||
pub fn buffer_non_error_diag(&mut self, t: DiagnosticBuilder<'_, ()>) {
|
||||
pub fn buffer_non_error(&mut self, t: DiagnosticBuilder<'_, ()>) {
|
||||
self.buffered.push(t.into_diagnostic());
|
||||
}
|
||||
|
||||
|
@ -2449,8 +2449,8 @@ mod error {
|
|||
self.errors.buffer_error(t);
|
||||
}
|
||||
|
||||
pub fn buffer_non_error_diag(&mut self, t: DiagnosticBuilder<'_, ()>) {
|
||||
self.errors.buffer_non_error_diag(t);
|
||||
pub fn buffer_non_error(&mut self, t: DiagnosticBuilder<'_, ()>) {
|
||||
self.errors.buffer_non_error(t);
|
||||
}
|
||||
|
||||
pub fn buffer_move_error(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue