Fix a typo in a comment.
llvm-svn: 53894
diff --git a/llvm/lib/Target/TargetMachineRegistry.cpp b/llvm/lib/Target/TargetMachineRegistry.cpp
index 62c76bb..72e5401 100644
--- a/llvm/lib/Target/TargetMachineRegistry.cpp
+++ b/llvm/lib/Target/TargetMachineRegistry.cpp
@@ -42,7 +42,7 @@
} else if (UsableTargets.size() == 1)
return UsableTargets.back().second;
- // Otherwise, take the best target, but make sure we don't have to equally
+ // Otherwise, take the best target, but make sure we don't have two equally
// good best targets.
std::sort(UsableTargets.begin(), UsableTargets.end());
if (UsableTargets.back().first ==UsableTargets[UsableTargets.size()-2].first){