From 200ee64f31d21e8571c43f3fbff54c3c5d53e336 Mon Sep 17 00:00:00 2001 From: Hussain Latiff <147608867+HussainLatiff@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:00:16 +0530 Subject: [PATCH] Add better variable name and type for code snippets for the example ballerina/Module.md Co-authored-by: Nipuna Ransinghe --- ballerina/Module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ballerina/Module.md b/ballerina/Module.md index 5261cf6..1a20457 100644 --- a/ballerina/Module.md +++ b/ballerina/Module.md @@ -79,7 +79,7 @@ Now, utilize the available connector operations. ### Return linked third-party accounts of the user ```ballerina - var s = check cl->/users/\@me/connections(); + ConnectedAccountResponse[] connectedAccounts = check cl->/users/\@me/connections(); ```` ### Step 4: Run the Ballerina application