File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1424,7 +1424,7 @@ into every file. Its declarations can only be found by <a href="#expr-dot">dot
1424
1424
syntax</a>. It provides access to a small number of primitive representation
1425
1425
types and operations defined over them that map directly to LLVM IR.
1426
1426
1427
- The existance of and details of this module are a private implementation detail
1427
+ The existence of and details of this module are a private implementation detail
1428
1428
used by our implementation of the standard library. Swift code outside the
1429
1429
standard library should not be aware of this library, and an independent
1430
1430
implementation of the swift standard library should be allowed to be
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ bb0(%0 : $S1):
188
188
return %9999 : $()
189
189
}
190
190
191
- // This test checks where we have a multiple level heirarchy , the root is dead,
191
+ // This test checks where we have a multiple level hierarchy , the root is dead,
192
192
// but the root has all fields used. This means that we should extract
193
193
// everything, but we should not "reform" the aggregate.
194
194
// CHECK-LABEL: sil [fragile] [thunk] @multiple_level_all_root_fields_used_callee : $@convention(thin) (S2) -> (Builtin.Int16, Builtin.Int64) {
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ func testTuple() {
140
140
tup. x = 1
141
141
142
142
// <rdar://problem/20927707> QoI: 'variable was never mutated' noisy when only part of a destructured tuple is mutated
143
- var ( tupA, tupB) = ( 1 , 2 ) // don't warn about tupB being changable to a 'let'.
143
+ var ( tupA, tupB) = ( 1 , 2 ) // don't warn about tupB being changeable to a 'let'.
144
144
tupA += tupB
145
145
146
146
}
You can’t perform that action at this time.
0 commit comments