Skip to content

Commit 98230e6

Browse files
committed
Merge pull request #224 from wxxsw/whitespaces
Fix whitespace in test/type
2 parents 9233217 + e571b21 commit 98230e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/type/dictionary.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ var y2: [String : ] // expected-error{{expected dictionary value type}}
3232

3333
struct NotHashable { }
3434

35-
var nh1 : [NotHashable : Int ] // expected-error{{'NotHashable' does not conform to protocol 'Hashable'}}
35+
var nh1 : [NotHashable : Int] // expected-error{{'NotHashable' does not conform to protocol 'Hashable'}}

test/type/infer/global_variables.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var b = true, i = 17
44

5-
var d : Dictionary = [0 : "Zero", 1 : "One", 2 : "Two" ]
5+
var d : Dictionary = [0 : "Zero", 1 : "One", 2 : "Two"]
66

77
func testGlobals() {
88
b = false

test/type/infer/instance_variables.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
struct X {
44
var b = true, i = 17
55

6-
var d : Dictionary = [0 : "Zero", 1 : "One", 2 : "Two" ]
6+
var d : Dictionary = [0 : "Zero", 1 : "One", 2 : "Two"]
77
}
88

99
func testX(inout x: X) {

0 commit comments

Comments
 (0)