From 69f2bd4740191b1917296d55fe08e07922123c57 Mon Sep 17 00:00:00 2001 From: Edwin Shin Date: Fri, 5 Jul 2019 17:10:44 +0800 Subject: [PATCH] Fix grammar in Section 3 -- Type System.md (#546) Minor: missing preposition "of" --- spec/Section 3 -- Type System.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 9677a17f4..ecfb4d3e0 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -285,7 +285,7 @@ Types are used throughout GraphQL to describe both the values accepted as input to arguments and variables as well as the values output by fields. These two uses categorize types as *input types* and *output types*. Some kinds of types, like Scalar and Enum types, can be used as both input types and output types; -other kinds types can only be used in one or the other. Input Object types can +other kinds of types can only be used in one or the other. Input Object types can only be used as input types. Object, Interface, and Union types can only be used as output types. Lists and Non-Null types may be used as input types or output types depending on how the wrapped type may be used.