about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorwanghaha-dev <mail65656@163.com>2022-11-07 14:33:33 +0800
committerwanghaha-dev <mail65656@163.com>2022-11-07 14:33:33 +0800
commit009f80b987214aaae42c94d2fc8a33aaf689ab69 (patch)
tree0d0a498148514c2ebce4c194681f4985889d3579 /compiler
parent7eef946fc0e0eff40e588eab77b09b287accbec3 (diff)
downloadrust-009f80b987214aaae42c94d2fc8a33aaf689ab69.tar.gz
rust-009f80b987214aaae42c94d2fc8a33aaf689ab69.zip
Modify comment syntax error
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_macros/src/diagnostics/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_macros/src/diagnostics/error.rs b/compiler/rustc_macros/src/diagnostics/error.rs
index 0b1ededa775..4612f54e4b1 100644
--- a/compiler/rustc_macros/src/diagnostics/error.rs
+++ b/compiler/rustc_macros/src/diagnostics/error.rs
@@ -84,7 +84,7 @@ pub(crate) fn invalid_attr(attr: &Attribute, meta: &Meta) -> Diagnostic {
     }
 }
 
-/// Emit a error diagnostic for an invalid attribute (optionally performing additional decoration
+/// Emit an error diagnostic for an invalid attribute (optionally performing additional decoration
 /// using the `FnOnce` passed in `diag`) and return `Err(ErrorHandled)`.
 ///
 /// For methods that return a `Result<_, DiagnosticDeriveError>`:
@@ -126,7 +126,7 @@ pub(crate) fn invalid_nested_attr(attr: &Attribute, nested: &NestedMeta) -> Diag
     }
 }
 
-/// Emit a error diagnostic for an invalid nested attribute (optionally performing additional
+/// Emit an error diagnostic for an invalid nested attribute (optionally performing additional
 /// decoration using the `FnOnce` passed in `diag`) and return `Err(ErrorHandled)`.
 ///
 /// For methods that return a `Result<_, DiagnosticDeriveError>`: