Skip to content

Commit

Permalink
Merge pull request #241 from NipunaRanasinghe/master
Browse files Browse the repository at this point in the history
Fix quickstart code sample
  • Loading branch information
NipunaRanasinghe authored Nov 13, 2024
2 parents 4df0de2 + a8b7afb commit 7e10b50
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 @@ -72,7 +72,7 @@ Create a `redis:ConnectionConfig` instance by giving the Redis server configurat
initialize the Ballerina Redis client using it.

```ballerina
redis:Client redis = new (
redis:Client redis = check new (
connection = {
host: "localhost",
port: 6379
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Create a `redis:ConnectionConfig` instance by giving the Redis server configurat
initialize the Ballerina Redis client using it.

```ballerina
redis:Client redis = new (
redis:Client redis = check new (
connection = {
host: "localhost",
port: 6379
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Create a `redis:ConnectionConfig` instance by giving the Redis server configurat
initialize the Ballerina Redis client using it.

```ballerina
redis:Client redis = new (
redis:Client redis = check new (
connection = {
host: "localhost",
port: 6379
Expand Down

0 comments on commit 7e10b50

Please sign in to comment.