File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Tests/SwiftFormatTests/Rules Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -147,15 +147,25 @@ final class BeginDocumentationCommentWithOneLineSummaryTests: LintOrFormatRuleTe
147
147
/// Creates an instance with the same raw value as `x` failing iff `x.kind != Subject.kind`.
148
148
struct TestBackTick {}
149
149
150
+ /// A set of `Diagnostic` that can answer the question ‘was there an error?’ in O(1).
151
+ struct TestSingleSmartQuotes {}
152
+
150
153
/// A set of `Diagnostic` that can answer the question 'was there an error?' in O(1).
151
- struct TestSingleQuotes {}
154
+ struct TestSingleStraightQuotes {}
152
155
153
156
/// A set of `Diagnostic` that can answer the question “was there an error?” in O(1).
154
- struct TestDoubleQuotes {}
157
+ struct TestDoubleSmartQuotes {}
158
+
159
+ /// A set of `Diagnostic` that can answer the question " was there an error? " in O(1).
160
+ struct TestDoubleStraightQuotes {}
155
161
156
162
/// A set of `Diagnostic` that can answer the question “was there
157
163
/// an error?” in O(1).
158
- struct TestTwoLinesDoubleQuotes {}
164
+ struct TestTwoLinesDoubleSmartQuotes {}
165
+
166
+ /// A set of `Diagnostic` that can answer the question " was there
167
+ /// an error? " in O(1).
168
+ struct TestTwoLinesDoubleStraightQuotes {}
159
169
"""
160
170
)
161
171
}
You can’t perform that action at this time.
0 commit comments