Skip to content

Commit 32f4cf9

Browse files
author
Vlad Balin
committed
Update README.md
1 parent 723206b commit 32f4cf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ var Bottom = React.createClass({
207207
Some lower-level components like custom `<input />` controls does not need models
208208
and collections, rather single value. Also, there might be very different ways how particular
209209
model attribute is bound to UI control. [React Link](https://facebook.github.io/react/docs/two-way-binding-helpers.html)
210-
is the perfect abstraction to isolate data binding details from the particular bound UI control.
210+
is the perfect abstraction to isolate data binding details from the UI control logic.
211211

212212
`NestedReact` supports data binding links which are backward compatible with standard React's Link.
213213

@@ -223,7 +223,7 @@ Links can be created directly using Link constructor, which allows you to handle
223223
```javascript
224224
var Nested = require( 'nestedtypes' );
225225

226-
var link = new Nested.Link( value, function( x ){ /* update */ } );
226+
var link = new Nested.Link( value, x => /* update */ } );
227227
```
228228

229229
Below is the brief reference for links API. Consult [Guide to Data Binding Use Cases](/example/databinding.md) to understand how to use it.

0 commit comments

Comments
 (0)