diff --git a/docs/v1.x-migration.md b/docs/v1.x-migration.md index ba4b0c14..83d70f07 100644 --- a/docs/v1.x-migration.md +++ b/docs/v1.x-migration.md @@ -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' }), ])