From de83cee28b204740aa0801283c5fa22830d70a3c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 8 Jan 2006 22:40:10 +0000 Subject: [PATCH] Fix line length of a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25149 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/ListReducer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bugpoint/ListReducer.h b/tools/bugpoint/ListReducer.h index ff2a11d5e91..484b3b57934 100644 --- a/tools/bugpoint/ListReducer.h +++ b/tools/bugpoint/ListReducer.h @@ -95,8 +95,8 @@ struct ListReducer { } // 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 - // elements and testing that. + // could. If there is more than two elements in the list, try deleting + // interior elements and testing that. // if (TheList.size() > 2) { bool Changed = true; -- 2.34.1