This commit is contained in:
veetaha 2020-05-10 21:59:15 +03:00
parent 33f240960d
commit 73c6bc4dbd
2 changed files with 2 additions and 2 deletions

View file

@ -1834,7 +1834,7 @@ impl NameRef {}
/// ❰ foo!(); ❱ /// ❰ foo!(); ❱
/// ///
/// fn main() { /// fn main() {
/// ❰ foo!() ❱; // macro call expression position doesn't include the semi /// ❰ foo!() ❱; // macro call in expression positions doesn't include the semi
/// } /// }
/// ``` /// ```
/// ///

View file

@ -1558,7 +1558,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
/// ❰ foo!(); ❱ /// ❰ foo!(); ❱
/// ///
/// fn main() { /// fn main() {
/// ❰ foo!() ❱; // macro call expression position doesn't include the semi /// ❰ foo!() ❱; // macro call in expression positions doesn't include the semi
/// } /// }
/// ``` /// ```
/// ///