Skip to content

Commit

Permalink
Add missing semicolon in AST spec (#12454)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
sosukesuzuki committed Dec 7, 2020
1 parent b5b95f8 commit 2ba9265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/babel-parser/ast/spec.md
Expand Up @@ -1082,7 +1082,7 @@ An expression wrapped by parentheses. By default `@babel/parser` does not create
```js
interface DoExpression <: Expression {
type: "DoExpression";
body: BlockStatement
body: BlockStatement;
}
```

Expand Down

0 comments on commit 2ba9265

Please sign in to comment.