From 9e59d4a98ddc89d436a6ae74f615d65b69a48874 Mon Sep 17 00:00:00 2001 From: Gilbert Date: Mon, 18 Jul 2016 12:25:29 -0500 Subject: [PATCH] Update m.sync migration docs --- docs/v1.x-migration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' }), ])