From c8e939c3d405e7531dab27f0ed9dea5fcf909fe1 Mon Sep 17 00:00:00 2001 From: Erwan Leblanc Date: Wed, 6 Sep 2017 11:42:58 +0200 Subject: [PATCH] docs: fixed variable declaration --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b26b6d56..e6c54e17 100644 --- a/README.md +++ b/README.md @@ -499,7 +499,7 @@ ```js var eventName = 'clicked_on_this' - var metadata = { 'custom_dictionary': 123, 'anything': 'everything' } + var metaData = { 'custom_dictionary': 123, 'anything': 'everything' } Branch.userCompletedAction(eventName, metaData).then(function (res) { alert('Response: ' + JSON.stringify(res)) }).catch(function (err) {