docs: fix typo in spec [skip ci]

This commit is contained in:
Sven SAULEAU 2017-05-29 18:46:52 +02:00
parent d3bc8fcbdf
commit 03d89b6307
No known key found for this signature in database
GPG Key ID: 7C3212582FBA1BA2

View File

@ -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