Skip to content

Commit fdd0bd9

Browse files
committed
Reformat test_problem_SingleStyleParameter.
1 parent a529a45 commit fdd0bd9

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

Tests/PrettyColorsTests.swift

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,21 @@ class PrettyColorsTests: XCTestCase {
2626
}
2727

2828
func test_problem_SingleStyleParameter() {
29-
//// As of `swift-600.0.57.3`, the following statement errors:
30-
//// «Extra argument 'style' in call»
29+
/*
30+
As of `swift-600.0.57.3`, the following statement errors:
31+
«Extra argument 'style' in call»
32+
*/
3133
// Color.Wrap(style: .Bold)
32-
//// Removing the supposedly "extra" argument 'style' errors:
33-
//// «'().Type' does not have a member named 'Bold'»
34+
35+
/*
36+
Removing the supposedly "extra" argument 'style' errors:
37+
«'().Type' does not have a member named 'Bold'»
38+
*/
3439
// Color.Wrap(.Bold)
3540

3641
/*
3742
The true problem appears to be the ambiguity between the
38-
two functions of the form «init(foreground:background:style:)».
43+
two functions of the form `init(foreground:background:style:)`.
3944
*/
4045

4146
// Workarounds:

0 commit comments

Comments
 (0)