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 +```