Skip to content

Commit ed6a119

Browse files
author
Vlad Balin
committed
Update README.md
1 parent 1f943c2 commit ed6a119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ For link enclosing array:
210210
- `arrLink.contains( x )` creates boolean link which is true whenever x is contained in an array in link value. Useful for checkboxes. Avoid long arrays, currently operations has O(N^2) complexity.
211211

212212
For link enclosings arrays and plain JS objects:
213-
- `arrOrObjLink.at( key )` creates link to array of object member with a given key. Useful when working with plain JS objects in model attributes.
213+
- `arrOrObjLink.at( key )` creates link to array of object member with a given key. Can be applied multiple times to work with object hierarchies; on modifications, objects will be updated in purely functional way (modified parts will be shallow copied). Useful when working with plain JS objects in model attributes - updating them through links make changes visible to the model.
214214
- `arrOrObjLink.map( ( itemLink, key ) => <input key={ key } valieLink={ itemLink } /> )` iterates through object or array, wrapping its elements to links. Useful for JSX transofrmation.
215215

216216
### Links and components state

0 commit comments

Comments
 (0)