Skip to content

Commit 72a46e4

Browse files
committed
spelling: section
Signed-off-by: Josh Soref <[email protected]>
1 parent 29c8ffc commit 72a46e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Interop/Cxx/class/memberwise-initializer-typechecker.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import MemberwiseInitializer
44

55
let structPrivateOnly = StructPrivateOnly(varPrivate: 42) // expected-error {{argument passed to call that takes no arguments}}
66
let structPublicOnly = StructPublicOnly(varPublic: 42)
7-
let structEmptyPrivateSetion = StructEmptyPrivateSection(varPublic: 42)
7+
let structEmptyPrivateSection = StructEmptyPrivateSection(varPublic: 42)
88
let structPublicAndPrivate1 = StructPublicAndPrivate(varPublic: 42) // expected-error {{argument passed to call that takes no arguments}}
99
let structPublicAndPrivate2 = StructPublicAndPrivate(varPublic: 42, varPrivate: 23) // expected-error {{argument passed to call that takes no arguments}}
1010
let structWithUnimportedMemberFunction = StructWithUnimportedMemberFunction(varPublic: 42)
1111

1212
let classPrivateOnly = ClassPrivateOnly(varPrivate: 42) // expected-error {{argument passed to call that takes no arguments}}
1313
let classPublicOnly = ClassPublicOnly(varPublic: 42)
14-
let classEmptyPublicSetion = ClassEmptyPublicSection(varPrivate: 42) // expected-error {{argument passed to call that takes no arguments}}
14+
let classEmptyPublicSection = ClassEmptyPublicSection(varPrivate: 42) // expected-error {{argument passed to call that takes no arguments}}
1515
let classPublicAndPrivate1 = ClassPrivateAndPublic(varPublic: 23) // expected-error {{argument passed to call that takes no arguments}}
1616
let classPublicAndPrivate2 = ClassPrivateAndPublic(varPrivate: 42, varPublic: 23) // expected-error {{argument passed to call that takes no arguments}}
1717
let classWithUnimportedMemberFunction = ClassWithUnimportedMemberFunction(varPublic: 42)

0 commit comments

Comments
 (0)