From a554dd5f43f7474de4b2721eb22e7aab105e2ca3 Mon Sep 17 00:00:00 2001 From: Richard Park Date: Wed, 27 Jan 2021 16:11:08 -0800 Subject: [PATCH] Rather than using a variable that doesn't exist let's just use the same "" convention we used for the adminclient --- sdk/servicebus/service-bus/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/servicebus/service-bus/README.md b/sdk/servicebus/service-bus/README.md index b568f7d73a1d..0ffea5ce294e 100644 --- a/sdk/servicebus/service-bus/README.md +++ b/sdk/servicebus/service-bus/README.md @@ -60,7 +60,7 @@ the connection string from the Azure portal. ```javascript const { ServiceBusClient } = require("@azure/service-bus"); -const serviceBusClient = new ServiceBusClient(connectionString); +const serviceBusClient = new ServiceBusClient(""); ``` More information about this constructor is available in the [API documentation][sbclient_constructor].