diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmListCommand.h | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2 |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmListCommand.h')
-rw-r--r-- | Source/cmListCommand.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmListCommand.h b/Source/cmListCommand.h index 5df06dd..99d3314 100644 --- a/Source/cmListCommand.h +++ b/Source/cmListCommand.h @@ -65,7 +65,8 @@ public: { return " LIST(LENGTH <list> <output variable>)\n" - " LIST(GET <list> <element index> [<element index> ...] <output variable>)\n" + " LIST(GET <list> <element index> [<element index> ...] " + "<output variable>)\n" " LIST(SET <list> <element> [<element> ...])\n" " LIST(INSERT <list> <element_index> <element> [<element> ...])\n" " LIST(REMOVE <variable> <value> [<value> ...])\n" @@ -76,8 +77,8 @@ public: "GET will return list of elements specified by indices from the list.\n" "SET will append elements to the list.\n" "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" + "When specifying an index, negative value corresponds to index from the" + " end of the list.\n" ; } |