From b0e58d6d176d236fec33589ccba76baf48bac740 Mon Sep 17 00:00:00 2001 From: Lee Byron Date: Fri, 10 Jan 2020 14:23:46 -0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Benedikt Franke --- spec/Section 3 -- Type System.md | 8 ++++---- spec/Section 4 -- Introspection.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index cf1a5e843..7af36b5d3 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1660,10 +1660,10 @@ fragment SomeFragment on SomeType { } ``` -A directive may be defined as repeatable at any permitted location with the `repeatable` -keyword. Repeatable directives often useful when the same directive should be used with -different arguments at the one location, especially in cases where additional information -need to be provided in a form of directive via a type or a schema extension: +A directive may be defined as repeatable at any permitted location with the `repeatable` +keyword. Repeatable directives are often useful when the same directive should be used with +different arguments at a single location, especially in cases where additional information +needs to be provided to a type or schema extension via a directive: ```graphql example directive @delegateField(name: String!) repeatable on OBJECT | INTERFACE diff --git a/spec/Section 4 -- Introspection.md b/spec/Section 4 -- Introspection.md index 00db47e14..dd6da9438 100644 --- a/spec/Section 4 -- Introspection.md +++ b/spec/Section 4 -- Introspection.md @@ -418,4 +418,4 @@ Fields locations this directive may be placed. * `args` returns a List of `__InputValue` representing the arguments this directive accepts. -* `isRepeatable` must return a Boolean which permits using the directive multiple times at the same location. +* `isRepeatable` must return a Boolean that indicates if the directive may be used repeatedly at a single location.