From dce5df19f1d8d9e3ade91c5952db62b10688b7e2 Mon Sep 17 00:00:00 2001 From: "oldo.nicho" Date: Sun, 6 Sep 2020 13:05:13 +1000 Subject: [PATCH] chore(docs): minor typos in tutorial (#1396) --- .../03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/010-getting-started/03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx b/website/content/010-getting-started/03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx index bc8ed4d5f..26c137ddc 100644 --- a/website/content/010-getting-started/03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx +++ b/website/content/010-getting-started/03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx @@ -166,7 +166,7 @@ Mutation { ## Model the domain: Part 2 -Before we wrap this chapter let's flush out our schema a bit more. We'll add a `publish` mutation to transform a draft into an actual published post, then we'll let API clients read the the published posts. +Before we wrap this chapter let's flesh out our schema a bit more. We'll add a `publish` mutation to transform a draft into an actual published post, then we'll let API clients read the published posts. ```ts // api/graphql/Post.ts