We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e73a05 commit 838485cCopy full SHA for 838485c
CodeGeneration/Sources/SyntaxSupport/Trivia.swift
@@ -150,7 +150,7 @@ public let TRIVIAS: [Trivia] = [
150
151
Trivia(
152
name: "DocLineComment",
153
- comment: #"A documentation line comment, starting with '///'."#,
+ comment: #"A documentation line comment, starting with '///' and excluding the trailing newline."#,
154
isComment: true
155
),
156
@@ -168,7 +168,7 @@ public let TRIVIAS: [Trivia] = [
168
169
170
name: "LineComment",
171
- comment: #"A developer line comment, starting with '//'"#,
+ comment: #"A developer line comment, starting with '//' and excluding the trailing newline."#,
172
173
174
0 commit comments