Skip to content

Commit

Permalink
Fix typo in README (#16)
Browse files Browse the repository at this point in the history
missing "h" in the example call to `println(query.toGrapQueryString())`
  • Loading branch information
mrowe authored and VerachadW committed Aug 23, 2017
1 parent d48a480 commit 9e7d3d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ If you are not familiar with GraphQL syntax, We recommended to read on this [spe
/*
* Result: {"query": "query {\nnotes {\nid\ncreatedDate\ncontent\nauthor {\nname\navatarUrl(size: 100)\n}\n}\n}", "variables": null, "operationName": null}
*/
println(query.toGrapQueryString())
println(query.toGraphQueryString())
/*
* Result:
* query {
Expand All @@ -188,4 +188,4 @@ If you are not familiar with GraphQL syntax, We recommended to read on this [spe
*/
```
### Contributing to Kraph
We use Github issues for tracking bugs and requests. Any feedback and/or PRs is welcome.
We use Github issues for tracking bugs and requests. Any feedback and/or PRs is welcome.

0 comments on commit 9e7d3d5

Please sign in to comment.