tc39/ecma262

consistently capitalise List when referring to the spec data structure

Open

#2,630 opened on Jan 20, 2022

View on GitHub
 (0 comments) (0 reactions) (0 assignees)HTML (1,409 forks)batch import
editorial changeestablishes editorial conventionsgood first issue

Repository metrics

Stars
 (15,626 stars)
PR merge metrics
 (Avg merge 92d 19h) (17 merged PRs in 30d)

Description

There's some places where we refer to a List as a "list".

- argumentsList is the list of arguments values passed to the method
+ argumentsList is the List of arguments values passed to the method
- and it would be unobservable if an implementation removed the pair from the [[TemplateMap]] list.
+ and it would be unobservable if an implementation removed the pair from the [[TemplateMap]] List.
- Initially a new empty List, representing the list of objects to be kept alive until the end of the current Job
+ Initially a new empty List, representing the objects to be kept alive until the end of the current Job

etc.

Contributor guide