tc39/proposal-optional-chaining

Typo (missing the dot operator)

RinatValiullov opened this issue · 1 comments

Unless otherwise noted, in the following languages, the syntax consists of a question mark prepending the operator, (`a?.b`, `a?.b()`, `a?[b]` or `a?(b)` when applicable).

The following constructs are missing the dot . operator:
a?[b] or a?(b)

It should be:
a?.[b] or a?.(b)

No, because this sentence refers to the languages mentioned in the “Prior Art” section, not to ECMAScript.