Skip to content

Commit fc58fcf

Browse files
committed
Fix typo in Stmt::Macro documentation
1 parent e298152 commit fc58fcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stmt.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ ast_enum! {
2626
/// A macro invocation in statement position.
2727
///
2828
/// Syntactically it's ambiguous which other kind of statement this
29-
/// macro would expand to. It can be an of local variable (`let`), item,
30-
/// or expression.
29+
/// macro would expand to. It can be any of local variable (`let`),
30+
/// item, or expression.
3131
Macro(StmtMacro),
3232
}
3333
}
@@ -62,7 +62,7 @@ ast_struct! {
6262
/// A macro invocation in statement position.
6363
///
6464
/// Syntactically it's ambiguous which other kind of statement this macro
65-
/// would expand to. It can be an of local variable (`let`), item, or
65+
/// would expand to. It can be any of local variable (`let`), item, or
6666
/// expression.
6767
#[cfg_attr(doc_cfg, doc(cfg(feature = "full")))]
6868
pub struct StmtMacro {

0 commit comments

Comments
 (0)