Skip to content

Fix typo #172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/archive/LangRefNew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1424,7 +1424,7 @@ into every file. Its declarations can only be found by <a href="#expr-dot">dot
syntax</a>. It provides access to a small number of primitive representation
types and operations defined over them that map directly to LLVM IR.

The existance of and details of this module are a private implementation detail
The existence of and details of this module are a private implementation detail
used by our implementation of the standard library. Swift code outside the
standard library should not be aware of this library, and an independent
implementation of the swift standard library should be allowed to be
Expand Down
2 changes: 1 addition & 1 deletion test/SILPasses/functionsigopts_sroa.sil
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ bb0(%0 : $S1):
return %9999 : $()
}

// This test checks where we have a multiple level heirarchy, the root is dead,
// This test checks where we have a multiple level hierarchy, the root is dead,
// but the root has all fields used. This means that we should extract
// everything, but we should not "reform" the aggregate.
// CHECK-LABEL: sil [fragile] [thunk] @multiple_level_all_root_fields_used_callee : $@convention(thin) (S2) -> (Builtin.Int16, Builtin.Int64) {
Expand Down
2 changes: 1 addition & 1 deletion test/decl/var/usage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func testTuple() {
tup.x = 1

// <rdar://problem/20927707> QoI: 'variable was never mutated' noisy when only part of a destructured tuple is mutated
var (tupA, tupB) = (1,2) // don't warn about tupB being changable to a 'let'.
var (tupA, tupB) = (1,2) // don't warn about tupB being changeable to a 'let'.
tupA += tupB

}
Expand Down