Reword explanation of relative update

This commit is contained in:
neuroevolutus 2023-03-12 15:30:15 -05:00
parent 241ef6fbab
commit bd42b56be9
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ This operator is used to update node values. It can be used in either the:
Which will set the LHS node values equal to the RHS node values. The RHS expression is run against the matching nodes in the pipeline.
### relative form: `|=`
This will do a similar thing to the plain form, however, the RHS expression is run against _the LHS nodes_. This is useful for updating values based on old values, e.g. increment.
This will do a similar thing to the plain form, but the RHS expression is run with _each LHS node as context_. This is useful for updating values based on old values, e.g. increment.
### Flags

View File

@ -6,7 +6,7 @@ This operator is used to update node values. It can be used in either the:
Which will set the LHS node values equal to the RHS node values. The RHS expression is run against the matching nodes in the pipeline.
### relative form: `|=`
This will do a similar thing to the plain form, however, the RHS expression is run against _the LHS nodes_. This is useful for updating values based on old values, e.g. increment.
This will do a similar thing to the plain form, but the RHS expression is run with _each LHS node as context_. This is useful for updating values based on old values, e.g. increment.
### Flags