Skip to content

Commit

Permalink
grammar and clarity correction
Browse files Browse the repository at this point in the history
  • Loading branch information
lordlatch committed Mar 14, 2017
1 parent 6f68496 commit cad3796
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/user_guide/nodes/list/repeat_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Options


- **Amount**
This option all you to exactly define the amount of repetition.
This option defines the amount of repetition.
- **Length**
This option all you to define the length of the output list.
This option defines the length of the output list.
The amount of repetition is set automatically to fill that length, all the
elements that exceed that length will be cut off.So if the length is 5 the
elements which exceed that length will be cut off. If the length is 5, the
output list will be [1,2,3,1,2] Notice that the second 3 was cut because
it exceeded the defined length.
- **Below Length**
Expand All @@ -34,10 +34,10 @@ Options
Notice that the whole second repetition was rejected because it didn't make
it to the last element.
- **Above Length**
Just like **Below Length** this option allow you to define the length but if
Just like **Below Length** this option allows you to define the length but if
the length was sufficient to add at least one element from the second repetition,
the whole second repetition will be added. So if the length was 5 the output
will be ``[1,2,3,1,2,3]``. Notice that the second 3 was not suppose to be
will be ``[1,2,3,1,2,3]``. Notice that the second 3 was not supposed to be
in the list but it was added anyway.

Inputs
Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/nodes/list/reverse_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Reverse List

Description
-----------
This node flip the order of the elements of the list.The list ``[1,2,3]`` becomes ``[3,2,1]``.
This node flips the order of the elements of the list.The list ``[1,2,3]`` becomes ``[3,2,1]``.

.. image:: images/reverse_list_node.png
:width: 160pt
Expand Down

0 comments on commit cad3796

Please sign in to comment.