Rollup merge of #120118 - kapilsinha:patch-1, r=Nilstrieb
Fix typo in documentation in base.rs
This commit is contained in:
commit
b4616f5f65
1 changed files with 3 additions and 3 deletions
|
@ -664,8 +664,8 @@ pub enum SyntaxExtensionKind {
|
||||||
/// A token-based attribute macro.
|
/// A token-based attribute macro.
|
||||||
Attr(
|
Attr(
|
||||||
/// An expander with signature (TokenStream, TokenStream) -> TokenStream.
|
/// An expander with signature (TokenStream, TokenStream) -> TokenStream.
|
||||||
/// The first TokenSteam is the attribute itself, the second is the annotated item.
|
/// The first TokenStream is the attribute itself, the second is the annotated item.
|
||||||
/// The produced TokenSteam replaces the input TokenSteam.
|
/// The produced TokenStream replaces the input TokenStream.
|
||||||
Box<dyn AttrProcMacro + sync::DynSync + sync::DynSend>,
|
Box<dyn AttrProcMacro + sync::DynSync + sync::DynSend>,
|
||||||
),
|
),
|
||||||
|
|
||||||
|
@ -685,7 +685,7 @@ pub enum SyntaxExtensionKind {
|
||||||
/// A token-based derive macro.
|
/// A token-based derive macro.
|
||||||
Derive(
|
Derive(
|
||||||
/// An expander with signature TokenStream -> TokenStream.
|
/// 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
|
/// FIXME: The text above describes how this should work. Currently it
|
||||||
/// is handled identically to `LegacyDerive`. It should be migrated to
|
/// is handled identically to `LegacyDerive`. It should be migrated to
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue