Fix line length of a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25149 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-01-08 22:40:10 +00:00
parent ce8d090b84
commit de83cee28b

View File

@ -95,8 +95,8 @@ struct ListReducer {
} }
// Okay, we trimmed as much off the top and the bottom of the list as we // Okay, we trimmed as much off the top and the bottom of the list as we
// could. If there is more two elements in the list, try deleting interior // could. If there is more than two elements in the list, try deleting
// elements and testing that. // interior elements and testing that.
// //
if (TheList.size() > 2) { if (TheList.size() > 2) {
bool Changed = true; bool Changed = true;