Skip to content

Commit

Permalink
Update variable naming in md files
Browse files Browse the repository at this point in the history
  • Loading branch information
sahanHe committed Feb 14, 2024
1 parent 6566931 commit e0079e0
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 e0079e0

Please sign in to comment.