Skip to content

Commit

Permalink
Merge pull request #7 from ayeshLK/docs
Browse files Browse the repository at this point in the history
Update quickstart guide code-samples
  • Loading branch information
ayeshLK authored Jul 26, 2024
2 parents e77f0b3 + 51b1a37 commit af45f54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Now, utilize the available connector operations.
#### Create a new customer

```ballerina
stripe:v1_customers_body newCustomer = {
stripe:customers_body newCustomer = {
name: "John Doe",
email: "john.doe@sample.com",
address: {
Expand All @@ -86,7 +86,7 @@ stripe:Customer customerDetails = check stripe->/customers.post(newCustomer);
#### List all customers

```ballerina
stripe:CustomerResourceCustomerList availableCustomers = check stripe->/customers();
stripe:CustomerResourceCustomerList availableCustomers = check stripe->/customers;
```

## Build from the source
Expand Down
4 changes: 2 additions & 2 deletions ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Now, utilize the available connector operations.
#### Create a new customer

```ballerina
stripe:v1_customers_body newCustomer = {
stripe:customers_body newCustomer = {
name: "John Doe",
email: "john.doe@sample.com",
address: {
Expand All @@ -80,5 +80,5 @@ stripe:Customer customerDetails = check stripe->/customers.post(newCustomer);
#### List all customers

```ballerina
stripe:CustomerResourceCustomerList availableCustomers = check stripe->/customers();
stripe:CustomerResourceCustomerList availableCustomers = check stripe->/customers;
```
4 changes: 2 additions & 2 deletions ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Now, utilize the available connector operations.
#### Create a new customer

```ballerina
stripe:v1_customers_body newCustomer = {
stripe:customers_body newCustomer = {
name: "John Doe",
email: "john.doe@sample.com",
address: {
Expand All @@ -80,5 +80,5 @@ stripe:Customer customerDetails = check stripe->/customers.post(newCustomer);
#### List all customers

```ballerina
stripe:CustomerResourceCustomerList availableCustomers = check stripe->/customers();
stripe:CustomerResourceCustomerList availableCustomers = check stripe->/customers;
```

0 comments on commit af45f54

Please sign in to comment.