Skip to content

Commit 08f4ff7

Browse files
Fix typo in Ballerina GraphQL description (#1370)
1 parent 9bcfe2d commit 08f4ff7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/content/code/language-support/ballerina/client/ballerina-graphql.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ github: ballerina-platform/module-ballerina-graphql
88
To run a `ballerina-graphql` client:
99

1010
- Download and install [Ballerina Language](https://ballerina.io/downloads)
11-
- Then run `bal run graphql_client.bal` to run the service, with with this code in the `graphql_client.bal` file:
11+
- Then run `bal run graphql_client.bal` to run the service, with this code in the `graphql_client.bal` file:
1212

1313
```ballerina
1414
import ballerina/graphql;
@@ -25,3 +25,7 @@ public function main() returns error? {
2525
io:println(response.data.hello);
2626
}
2727
```
28+
29+
## Features
30+
- Dependently-typed response retrieval with Ballerina type inferring
31+
- Custom client generation support

src/content/code/language-support/ballerina/server/ballerina-graphql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ github: ballerina-platform/module-ballerina-graphql
88
To run a `ballerina-graphql` hello world server:
99

1010
- Download and install [Ballerina Language](https://ballerina.io/downloads)
11-
- Then run `bal run graphql_service.bal` to run the service, with with this code in the `graphql_service.bal` file:
11+
- Then run `bal run graphql_service.bal` to run the service, with this code in the `graphql_service.bal` file:
1212

1313
```ballerina
1414
import ballerina/graphql;

0 commit comments

Comments
 (0)