Skip to content

Commit 36e9e9e

Browse files
committed
Merge pull request microsoft#6472 from pcbro/pcbro-patch-1
Use gender-neutral language
2 parents 911d07a + 4d065ff commit 36e9e9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5037,7 +5037,7 @@ var ts;
50375037
* Given an super call\property node returns a closest node where either
50385038
* - super call\property is legal in the node and not legal in the parent node the node.
50395039
* i.e. super call is legal in constructor but not legal in the class body.
5040-
* - node is arrow function (so caller might need to call getSuperContainer in case if he needs to climb higher)
5040+
* - node is arrow function (so caller might need to call getSuperContainer in case it needs to climb higher)
50415041
* - super call\property is definitely illegal in the node (but might be legal in some subnode)
50425042
* i.e. super property access is illegal in function declaration but can be legal in the statement list
50435043
*/

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5037,7 +5037,7 @@ var ts;
50375037
* Given an super call\property node returns a closest node where either
50385038
* - super call\property is legal in the node and not legal in the parent node the node.
50395039
* i.e. super call is legal in constructor but not legal in the class body.
5040-
* - node is arrow function (so caller might need to call getSuperContainer in case if he needs to climb higher)
5040+
* - node is arrow function (so caller might need to call getSuperContainer in case it needs to climb higher)
50415041
* - super call\property is definitely illegal in the node (but might be legal in some subnode)
50425042
* i.e. super property access is illegal in function declaration but can be legal in the statement list
50435043
*/

src/compiler/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ namespace ts {
779779
* Given an super call\property node returns a closest node where either
780780
* - super call\property is legal in the node and not legal in the parent node the node.
781781
* i.e. super call is legal in constructor but not legal in the class body.
782-
* - node is arrow function (so caller might need to call getSuperContainer in case if he needs to climb higher)
782+
* - node is arrow function (so caller might need to call getSuperContainer in case it needs to climb higher)
783783
* - super call\property is definitely illegal in the node (but might be legal in some subnode)
784784
* i.e. super property access is illegal in function declaration but can be legal in the statement list
785785
*/

0 commit comments

Comments
 (0)