diff --git a/doc/ast/spec.md b/doc/ast/spec.md index 7e607ca2f3..ede135b21a 100644 --- a/doc/ast/spec.md +++ b/doc/ast/spec.md @@ -1,6 +1,4 @@ - - -This document specifies the core ESTree AST node types that support the ES5 grammar. +These are the core Babylon AST node types. - [Node objects](#node-objects) - [Identifier](#identifier) @@ -107,11 +105,9 @@ This document specifies the core ESTree AST node types that support the ES5 gram - [ExportDefaultDeclaration](#exportdefaultdeclaration) - [ExportAllDeclaration](#exportalldeclaration) - - # Node objects -ESTree AST nodes are represented as `Node` objects, which may have any prototype inheritance but which implement the following interface: +AST nodes are represented as `Node` objects, which may have any prototype inheritance but which implement the following interface: ```js interface Node {