Skip to content

[gardening] Fix recently introduced typos: "resolveable" → "resolvable", "whcih" → "which" #1427

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 2 commits into from
Feb 24, 2016
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 lib/SIL/SILInstruction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ SILInstruction::MemoryBehavior SILInstruction::getMemoryBehavior() const {
}
}

// Handle full apply sites that have a resolveable callee function with an
// Handle full apply sites that have a resolvable callee function with an
// effects attribute.
if (isa<FullApplySite>(this)) {
FullApplySite Site(const_cast<SILInstruction *>(this));
Expand Down
2 changes: 1 addition & 1 deletion test/SILOptimizer/basic-instruction-properties.sil
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ bb0(%0 : $X):
apply %6(%0) : $@callee_owned @convention(thick) (@owned X) -> ()
apply %7() : $@callee_owned @convention(thick) () -> ()

// Make sure we properly handle full apply sites for whcih we can not
// Make sure we properly handle full apply sites for which we can not
// trivially find an absolute referenced function.
apply %8(%0) : $@convention(method) (@guaranteed X) -> ()
return undef : $()
Expand Down