Skip to content

Commit ed84d1d

Browse files
committed
Fix typo
1 parent 10c3644 commit ed84d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_resolve/src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
549549
err.span_label(path.span, format!("not {} {}", article, expected));
550550

551551
if kind == MacroKind::Derive && ext.macro_kind() != MacroKind::Derive {
552-
// Suggest moving the macro our of the derive() as the macro isn't Derive
552+
// Suggest moving the macro out of the derive() as the macro isn't Derive
553553
err.span_help(path.span, "Remove from the surrounding `derive()`");
554554
err.help(format!("Add as non-Derive macro\n`#[{}]`", path_str));
555555
}

0 commit comments

Comments
 (0)