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
147147 /// Creates an instance with the same raw value as `x` failing iff `x.kind != Subject.kind`.
148148 struct TestBackTick {}
149149
150+ /// A set of `Diagnostic` that can answer the question ‘was there an error?’ in O(1).
151+ struct TestSingleSmartQuotes {}
152+
150153 /// A set of `Diagnostic` that can answer the question 'was there an error?' in O(1).
151- struct TestSingleQuotes {}
154+ struct TestSingleStraightQuotes {}
152155
153156 /// 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 {}
155161
156162 /// A set of `Diagnostic` that can answer the question “was there
157163 /// 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 {}
159169 """
160170 )
161171 }
You can’t perform that action at this time.
0 commit comments