Skip to content

Commit 838485c

Browse files
committed
Update code generator to fix CI
1 parent 3e73a05 commit 838485c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CodeGeneration/Sources/SyntaxSupport/Trivia.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public let TRIVIAS: [Trivia] = [
150150

151151
Trivia(
152152
name: "DocLineComment",
153-
comment: #"A documentation line comment, starting with '///'."#,
153+
comment: #"A documentation line comment, starting with '///' and excluding the trailing newline."#,
154154
isComment: true
155155
),
156156

@@ -168,7 +168,7 @@ public let TRIVIAS: [Trivia] = [
168168

169169
Trivia(
170170
name: "LineComment",
171-
comment: #"A developer line comment, starting with '//'"#,
171+
comment: #"A developer line comment, starting with '//' and excluding the trailing newline."#,
172172
isComment: true
173173
),
174174

0 commit comments

Comments
 (0)