diff options
| author | kapilsinha <ksinha1999@gmail.com> | 2024-01-18 17:49:06 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-18 17:49:06 -0800 |
| commit | 1a343424f3ba3ce230b2b9ceeff9cc7449f354d3 (patch) | |
| tree | f63465c80a337c403cdf78dd16c482259c9e1fb4 | |
| parent | 25f8d01fd8bda339612d0c0a8844173a09205f7c (diff) | |
| download | rust-1a343424f3ba3ce230b2b9ceeff9cc7449f354d3.tar.gz rust-1a343424f3ba3ce230b2b9ceeff9cc7449f354d3.zip | |
Fix typo in documentation in base.rs
| -rw-r--r-- | compiler/rustc_expand/src/base.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_expand/src/base.rs b/compiler/rustc_expand/src/base.rs index 0a1c4430397..054ab2d126a 100644 --- a/compiler/rustc_expand/src/base.rs +++ b/compiler/rustc_expand/src/base.rs @@ -664,8 +664,8 @@ pub enum SyntaxExtensionKind { /// A token-based attribute macro. Attr( /// An expander with signature (TokenStream, TokenStream) -> TokenStream. - /// The first TokenSteam is the attribute itself, the second is the annotated item. - /// The produced TokenSteam replaces the input TokenSteam. + /// The first TokenStream is the attribute itself, the second is the annotated item. + /// The produced TokenStream replaces the input TokenStream. Box<dyn AttrProcMacro + sync::DynSync + sync::DynSend>, ), @@ -685,7 +685,7 @@ pub enum SyntaxExtensionKind { /// A token-based derive macro. Derive( /// An expander with signature TokenStream -> TokenStream. - /// The produced TokenSteam is appended to the input TokenSteam. + /// The produced TokenStream is appended to the input TokenStream. /// /// FIXME: The text above describes how this should work. Currently it /// is handled identically to `LegacyDerive`. It should be migrated to |
