From 03d89b6307e1eb9af7ae21509067ba433a0a7608 Mon Sep 17 00:00:00 2001 From: Sven SAULEAU Date: Mon, 29 May 2017 18:46:52 +0200 Subject: [PATCH] docs: fix typo in spec [skip ci] --- ast/spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast/spec.md b/ast/spec.md index 839239353b..1dd5be0282 100644 --- a/ast/spec.md +++ b/ast/spec.md @@ -863,7 +863,7 @@ interface MemberExpression <: Expression, Pattern { } ``` -A member expression. If `computed` is `true`, the node corresponds to a computed (`a[b]`) member expression and `property` is an `Expression`. If `computed` is `false`, the node corresponds to a static (`a.b`) member expression and `property` is an `Identifier`. The `optional` flags indecates that the member expression can be called even if the object is null or undefined. If this is the object value (null/undefined) should be returned. +A member expression. If `computed` is `true`, the node corresponds to a computed (`a[b]`) member expression and `property` is an `Expression`. If `computed` is `false`, the node corresponds to a static (`a.b`) member expression and `property` is an `Identifier`. The `optional` flags indicates that the member expression can be called even if the object is null or undefined. If this is the object value (null/undefined) should be returned. ### BindExpression