Merge pull request #1161 from mindeavor/patch-1

Update m.sync migration docs
This commit is contained in:
Leo Horie 2016-07-18 13:35:11 -04:00 committed by GitHub
commit fe630b9651

View file

@ -300,7 +300,7 @@ m.request({ method: 'GET', url: 'https://api.github.com/' })
});
```
The equivalent of `m.sync` is now `m.prop.sync`:
The equivalent of `m.sync` is now `m.prop.merge`:
### `v0.2.x`
@ -317,7 +317,7 @@ m.sync([
### `v1.x`
```js
m.prop.sync([
m.prop.merge([
m.request({ method: 'GET', url: 'https://api.github.com/users/lhorie' }),
m.request({ method: 'GET', url: 'https://api.github.com/users/isiahmeadows' }),
])