STYLE: Fix style

This commit is contained in:
Andy Cedilnik 2006-05-16 08:42:14 -04:00
parent 8224fee5df
commit 70d8c0f3d8
2 changed files with 21 additions and 20 deletions

View File

@ -299,7 +299,8 @@ bool cmListCommand
}
//----------------------------------------------------------------------------
bool cmListCommand::HandleRemoveAtCommand(std::vector<std::string> const& args)
bool cmListCommand::HandleRemoveAtCommand(
std::vector<std::string> const& args)
{
if(args.size() < 3)
{

View File

@ -79,9 +79,9 @@ public:
"INSERT will insert elements to the list to the specified location.\n"
"When specifying an index, negative value corresponds to index from the"
" end of the list.\n"
"REMOVE_AT and REMOVE_ITEM will remove item from the list. The difference "
"is that REMOVE_ITEM will remove the given items, while REMOVE_AT will "
"remove the item at the given indices.\n"
"REMOVE_AT and REMOVE_ITEM will remove item from the list. The "
"difference is that REMOVE_ITEM will remove the given items, while "
"REMOVE_AT will remove the item at the given indices.\n"
;
}