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 {
147
147
148
148
/// If a classification is passed, it specifies the color identifiers in
149
149
/// 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
152
152
/// identifiers) inherit the syntax classification.
153
153
init (
154
154
name: String ,
Original file line number Diff line number Diff line change @@ -1602,7 +1602,7 @@ public let EXPR_NODES: [Node] = [
1602
1602
) ,
1603
1603
1604
1604
// 'as' ('?'|'!')
1605
- // "as" type casting ooperator without operands.
1605
+ // "as" type casting operator without operands.
1606
1606
// NOTE: This appears only in SequenceExpr.
1607
1607
Node (
1608
1608
name: " UnresolvedAsExpr " ,
@@ -1622,7 +1622,7 @@ public let EXPR_NODES: [Node] = [
1622
1622
) ,
1623
1623
1624
1624
// 'is'
1625
- // "is" type casting ooperator without operands.
1625
+ // "is" type casting operator without operands.
1626
1626
// NOTE: This appears only in SequenceExpr.
1627
1627
Node (
1628
1628
name: " UnresolvedIsExpr " ,
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ extension Parser {
139
139
// Parsed sequence elements except 'lastElement'.
140
140
var elements = [ RawExprSyntax] ( )
141
141
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
143
143
// don't want to populate the 'Array' unless the expression is actually
144
144
// sequenced.
145
145
var lastElement : RawExprSyntax
You can’t perform that action at this time.
0 commit comments