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 906289a commit 6f68496
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docs/user_guide/nodes/list/get_list_length.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ Get List Length

Description
-----------
This node return the number of elements in the input list.
This node returns the number of elements in the input list.

.. image:: images/get_list_length_node.png
:width: 160pt

Inputs
------

- **List** - An input list.

Outputs
Expand Down
6 changes: 3 additions & 3 deletions docs/user_guide/nodes/list/get_random_list_element.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Get Random List Element

Description
-----------
This node return single or multiple random list elements.
This node returns single or multiple random list elements.

.. image:: images/get_random_list_element_node.png
:width: 160pt
Expand All @@ -18,7 +18,7 @@ Inputs
Outputs
-------

- **List** - A list that contain random elements from the input list.
- **List** - A list that contains random elements from the input list.

Advanced Node Settings
----------------------
Expand All @@ -33,7 +33,7 @@ between nodes with the same seed, e.g., When using multiple *Get Random List Ele
nodes in a loop while using the index as a seed, you can change the extra seed to get
different results from the other nodes.

Animation Nodes automatically change the *Node Seed* when you duplicate or add a
Animation Nodes automatically changes the *Node Seed* when you duplicate or add a
new *Get Random List Element* node.

Examples of Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/nodes/list/get_struct_list_elements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Description
-----------
This node takes a list of structs and output all the values of a specific common key between them.

So if a list of structs all have a key named Name and you want to output all the
If a list of structs all have a key named Name and you want to output all the
names in that key, you first have to convert the type of the node to be String
because names are strings and then type Name in the field.

Expand Down
12 changes: 6 additions & 6 deletions docs/user_guide/nodes/list/remove_list_element.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Remove List Element

Description
-----------
This node remove certain list elements based on their index or their values.
The type of the node change automatically to whatever the data type you input.
This node removes certain list elements based on their index or their values.
The type of the node changes automatically to whatever the data type you input.

.. image:: images/remove_list_element_node.png
:width: 160pt
Expand All @@ -13,16 +13,16 @@ Options
-------

- **First Occurrence**
This option remove the input value the at its first apperance only. So if the
This option removes the input value the at its first apperance only. So if the
input value is 1 and the input list is ``[1,2,3,1]`` the ouput list will be
``[2,3,1]``. Notice hat the last 1 didn't change.

- **All Occurrence**
This option remove all the input values from the list.
So for the previouse example the output list will be [2,3].
This option removes all the input values from the list.
So for the previous example the output list will be [2,3].

- **Index**
This option removes the element at the input index.So for the previouse example
This option removes the element at the input index.So for the previous example
with input index as 1 then the output will be ``[1,3,1]`` because 2 was at index 1.

Inputs
Expand Down

0 comments on commit 6f68496

Please sign in to comment.