From ba2b08095127cf0183a561366b57dfedf42232a4 Mon Sep 17 00:00:00 2001 From: Nico Date: Wed, 12 Jun 2019 16:09:48 +0800 Subject: [PATCH] Change the double quotation marks from simplified to English RT. xD --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f8109a1..a1f5ae56 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ func main() { log.Fatalf("failed to execute graphql operation, errors: %+v", r.Errors) } rJSON, _ := json.Marshal(r) - fmt.Printf("%s \n", rJSON) // {“data”:{“hello”:”world”}} + fmt.Printf("%s \n", rJSON) // {"data":{"hello":"world"}} } ``` For more complex examples, refer to the [examples/](https://github.com/graphql-go/graphql/tree/master/examples/) directory and [graphql_test.go](https://github.com/graphql-go/graphql/blob/master/graphql_test.go).