File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
CodeGeneration/Sources/SyntaxSupport Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -147,8 +147,8 @@ public class Child {
147147
148148 /// If a classification is passed, it specifies the color identifiers in
149149 /// that subtree should inherit for syntax coloring. Must be a member of
150- /// SyntaxClassification in SyntaxClassifier.h.gyb
151- /// If force_classification is also set to true, all child nodes (not only
150+ /// `` SyntaxClassification``.
151+ /// If `forceClassification` is also set to true, all child nodes (not only
152152 /// identifiers) inherit the syntax classification.
153153 init (
154154 name: String ,
Original file line number Diff line number Diff line change @@ -1602,7 +1602,7 @@ public let EXPR_NODES: [Node] = [
16021602 ) ,
16031603
16041604 // 'as' ('?'|'!')
1605- // "as" type casting ooperator without operands.
1605+ // "as" type casting operator without operands.
16061606 // NOTE: This appears only in SequenceExpr.
16071607 Node (
16081608 name: " UnresolvedAsExpr " ,
@@ -1622,7 +1622,7 @@ public let EXPR_NODES: [Node] = [
16221622 ) ,
16231623
16241624 // 'is'
1625- // "is" type casting ooperator without operands.
1625+ // "is" type casting operator without operands.
16261626 // NOTE: This appears only in SequenceExpr.
16271627 Node (
16281628 name: " UnresolvedIsExpr " ,
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ extension Parser {
139139 // Parsed sequence elements except 'lastElement'.
140140 var elements = [ RawExprSyntax] ( )
141141
142- // The last element parsed. we don't eagarly append to 'elements' because we
142+ // The last element parsed. we don't eagerly append to 'elements' because we
143143 // don't want to populate the 'Array' unless the expression is actually
144144 // sequenced.
145145 var lastElement : RawExprSyntax
You can’t perform that action at this time.
0 commit comments