From 891f31c339df90f4f43bcdfd31eac22d473e4a64 Mon Sep 17 00:00:00 2001 From: Ayesh Almeida <77491511+ayeshLK@users.noreply.github.com> Date: Thu, 6 Jun 2024 07:03:53 +0530 Subject: [PATCH] Apply suggestions from code review --- docs/spec/spec.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/spec/spec.md b/docs/spec/spec.md index 2be7f7a4..72c1adc5 100644 --- a/docs/spec/spec.md +++ b/docs/spec/spec.md @@ -564,7 +564,7 @@ public type ListenerConfiguration record {| ```ballerina # Creates a new `asb:Listener`. -# ```ballerina +# ``` # listener asb:Listener asbListener = check new ( # connectionString = "xxxxxxxx", # entityConfig = { @@ -754,7 +754,7 @@ An administrator client is responsible for managing a Service Bus namespace. ```ballerina # Initialize the Azure Service Bus Admin client. -# ```ballerina +# ``` # configurable string connectionString = ?; # asb:Administrator admin = check new (connectionString); # ``` @@ -823,7 +823,7 @@ isolated remote function listTopics() returns asb:TopicList|asb:Error?; ```ballerina # Delete the topic with the given name. -# ```ballerina +# ``` # check admin->deleteTopic("topic-1"); # ``` # @@ -865,7 +865,7 @@ isolated remote function createSubscription(string topicName, string subscriptio ```ballerina # Get the subscription with the given name. -# ```ballerina +# ``` # asb:SubscriptionProperties? subscriptionProperties = check admin->getSubscription("topic-1", "sub-a"); # ``` #