From 7bd780306f9ab9d5e7adb7bb5edfc8dd8bec874a Mon Sep 17 00:00:00 2001 From: Xancar Date: Wed, 7 Jun 2017 14:43:35 -0700 Subject: [PATCH] Change eventHub to serviceBus as event type - I think this should be `serviceBus` type instead of `eventHub`. Please let me know if this change is incorrect. --- docs/providers/azure/events/servicebus.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/providers/azure/events/servicebus.md b/docs/providers/azure/events/servicebus.md index 963703cb4..fe1dc64bc 100644 --- a/docs/providers/azure/events/servicebus.md +++ b/docs/providers/azure/events/servicebus.md @@ -29,7 +29,7 @@ functions: example: handler: handler.hello events: - - eventHub: + - serviceBus: x-azure-settings: name: item #, default - "mySbMsg", specifies which name it's available on `context.bindings` queueName: hello #, specifies the queue name to listen on @@ -61,7 +61,7 @@ functions: example: handler: handler.hello events: - - eventHub: + - serviceBus: x-azure-settings: name: item #, default - "mySbMsg", specifies which name it's available on `context.bindings` topicName: "hello" #, topic to listen on @@ -78,4 +78,4 @@ module.exports.hello = function(context, item) { context.log("Received item: ${item}"); context.done(); }; -``` \ No newline at end of file +```