Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK authored Jun 6, 2024
1 parent 85628f0 commit 891f31c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ public type ListenerConfiguration record {|

```ballerina
# Creates a new `asb:Listener`.
# ```ballerina
# ```
# listener asb:Listener asbListener = check new (
# connectionString = "xxxxxxxx",
# entityConfig = {
Expand Down Expand Up @@ -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);
# ```
Expand Down Expand Up @@ -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");
# ```
#
Expand Down Expand Up @@ -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");
# ```
#
Expand Down

0 comments on commit 891f31c

Please sign in to comment.