Skip to content
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/AST/ASTPrinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ ASTPrinter &ASTPrinter::operator<<(UUID UU) {
return *this;
}

/// Determine whether to escape the fiven keyword in the given context.
/// Determine whether to escape the given keyword in the given context.
static bool escapeKeywordInContext(StringRef keyword, PrintNameContext context){
switch (context) {
case PrintNameContext::Normal:
Expand Down
2 changes: 1 addition & 1 deletion lib/Driver/Compilation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ int Compilation::performJobsImpl() {
Diags.diagnose(SourceLoc(), diag::error_command_signalled,
SignalledCmd->getSource().getClassName());

// Since the task signalled, so unconditionally set result to -2.
// Since the task signalled, unconditionally set result to -2.
Result = -2;

return TaskFinishedResponse::StopExecution;
Expand Down