Skip to content

Commit

Permalink
Merge pull request #321 from ballerina-platform/revamp-2023
Browse files Browse the repository at this point in the history
Update variable naming in md files
  • Loading branch information
sahanHe authored Feb 14, 2024
2 parents fec223b + e0079e0 commit b99da1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b99da1f

Please sign in to comment.