From ea0b3e22c91a34f4be03df3fed7b81b496dfa4f5 Mon Sep 17 00:00:00 2001 From: Francisco Sales Date: Mon, 31 Oct 2016 17:27:15 +0000 Subject: [PATCH] adding merged method notes on docs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 227983a..d3db14e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Require the library and initialialize it with your account key: var Bing = require('node-bing-api')({ accKey: "your-account-key" }); ``` -#### Web Search: +#### Web Search (same as Composite): ```js Bing.web("Pizza", { top: 10, // Number of results (max 50) @@ -32,7 +32,7 @@ Bing.web("Pizza", { }); ``` -#### Composite Search: +#### Composite Search (same as Web): ```js Bing.composite("xbox", { top: 10, // Number of results (max 15 for news, max 50 if other) @@ -77,7 +77,7 @@ Bing.images("Ninja Turtles", { }); ``` -#### Related Search: +#### Related Search (same as Web): ```js Bing.relatedSearch('berlin', {market: 'en-US'}, function (err, res, body) { var suggestions = body.relatedSearches.value.map(function(r){ return r.Title; });