From 9bf8e82d7c06561b947c81c447a1903c648d40ea Mon Sep 17 00:00:00 2001 From: vladar Date: Fri, 18 Nov 2016 20:32:09 +0700 Subject: [PATCH] Minor fix to StarWarsSchema type language in comments --- tests/StarWarsSchema.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/StarWarsSchema.php b/tests/StarWarsSchema.php index 0b8d83a..a6b661d 100644 --- a/tests/StarWarsSchema.php +++ b/tests/StarWarsSchema.php @@ -32,7 +32,7 @@ use GraphQL\Type\Definition\Type; * appearsIn: [Episode] * } * - * type Human : Character { + * type Human implements Character { * id: String! * name: String * friends: [Character] @@ -40,7 +40,7 @@ use GraphQL\Type\Definition\Type; * homePlanet: String * } * - * type Droid : Character { + * type Droid implements Character { * id: String! * name: String * friends: [Character] @@ -136,7 +136,7 @@ class StarWarsSchema * We define our human type, which implements the character interface. * * This implements the following type system shorthand: - * type Human : Character { + * type Human implements Character { * id: String! * name: String * friends: [Character] @@ -197,7 +197,7 @@ class StarWarsSchema * The other type of character in Star Wars is a droid. * * This implements the following type system shorthand: - * type Droid : Character { + * type Droid implements Character { * id: String! * name: String * friends: [Character]