Skip to content

Commit 101bc22

Browse files
committed
Improve some names.
Lots of vectors of messages called `message` or `msg`. This commit pluralizes them. Note that `emit_message_default` and `emit_messages_default` both already existed, and both process a vector, so I renamed the former `emit_messages_default_inner` because it's called by the latter.
1 parent b29b02c commit 101bc22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse/session.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ mod tests {
370370

371371
fn build_diagnostic(level: DiagnosticLevel, span: Option<MultiSpan>) -> Diagnostic {
372372
let mut diag = Diagnostic::new(level, "");
373-
diag.message.clear();
373+
diag.messages.clear();
374374
if let Some(span) = span {
375375
diag.span = span;
376376
}

0 commit comments

Comments
 (0)