diff --git a/README.md b/README.md index 9a33fde8..5d394cdd 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ salesforce:Client salesforce = new(config); Following is an example on how to create a record using the connector. ```ballerina - salesforce:CreationResponse res = check + salesforce:CreationResponse response = check baseClient->create("Account", { "Name": "IT World", "BillingCity": "New York" diff --git a/ballerina/Module.md b/ballerina/Module.md index 25187c66..e289a3ae 100644 --- a/ballerina/Module.md +++ b/ballerina/Module.md @@ -81,7 +81,7 @@ salesforce:Client salesforce = new(config); Following is an example on how to create a record using the connector. ```ballerina - salesforce:CreationResponse res = check + salesforce:CreationResponse response = check baseClient->create("Account", { "Name": "IT World", "BillingCity": "New York" diff --git a/ballerina/Package.md b/ballerina/Package.md index e9049b1d..9ef62326 100644 --- a/ballerina/Package.md +++ b/ballerina/Package.md @@ -75,7 +75,7 @@ salesforce:Client salesforce = new(config); Following is an example on how to create a record using the connector. ```ballerina - salesforce:CreationResponse res = check + salesforce:CreationResponse response = check baseClient->create("Account", { "Name": "IT World", "BillingCity": "New York"