Skip to content

Commit 4ba1366

Browse files
IvanGoncharovleebyron
authored andcommitted
Remove number of excessive whitespaces (#403)
1 parent f0021c7 commit 4ba1366

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ this query would then be:
279279
```
280280

281281
Specifying the `query` keyword and an operation name is only required when a
282-
GraphQL document defines multiple operations. We therefore could have written
282+
GraphQL document defines multiple operations. We therefore could have written
283283
the previous query with the query shorthand:
284284

285285
```graphql
@@ -362,7 +362,7 @@ which will give us the nested response
362362
"friends": [
363363
{
364364
"name": "Luke Skywalker",
365-
"appearsIn": [ "NEWHOPE", "EMPIRE", "JEDI" ],
365+
"appearsIn": ["NEWHOPE", "EMPIRE", "JEDI"],
366366
"friends": [
367367
{ "name": "Han Solo" },
368368
{ "name": "Leia Organa" },
@@ -372,7 +372,7 @@ which will give us the nested response
372372
},
373373
{
374374
"name": "Han Solo",
375-
"appearsIn": [ "NEWHOPE", "EMPIRE", "JEDI" ],
375+
"appearsIn": ["NEWHOPE", "EMPIRE", "JEDI"],
376376
"friends": [
377377
{ "name": "Luke Skywalker" },
378378
{ "name": "Leia Organa" },
@@ -381,7 +381,7 @@ which will give us the nested response
381381
},
382382
{
383383
"name": "Leia Organa",
384-
"appearsIn": [ "NEWHOPE", "EMPIRE", "JEDI" ],
384+
"appearsIn": ["NEWHOPE", "EMPIRE", "JEDI"],
385385
"friends": [
386386
{ "name": "Luke Skywalker" },
387387
{ "name": "Han Solo" },

rfcs/Subscriptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ We'll try to define the irreducible components of a GraphQL Subscriptions system
6969

7070
The lifetime of a subscription looks like this:
7171

72-
* **Subscribe:** the Client initializes a subscription by sending a query and its variables to the server. When the Subscription is created, the input query and variables are mapped to a stream of events to which the Subscription listens. The server _may_ send an initial publish from executing the subscription operation.
72+
* **Subscribe:** the Client initializes a subscription by sending a query and its variables to the server. When the Subscription is created, the input query and variables are mapped to a stream of events to which the Subscription listens. The server _may_ send an initial publish from executing the subscription operation.
7373

7474
* **Publish:** when any of the events associated with the subscription are triggered, the subscription executes the query, variables, and payload and sends the result to the client.
7575

spec/GraphQL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Conformance requirements are described in this document via both
4949
descriptive assertions and key words with clearly defined meanings.
5050

5151
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
52-
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative portions of
52+
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative portions of
5353
this document are to be interpreted as described in [IETF RFC 2119](https://tools.ietf.org/html/rfc2119).
5454
These key words may appear in lowercase and still retain their meaning unless
5555
explicitly declared as non-normative.

spec/Section 2 -- Language.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ fragment friendFields on User {
488488
}
489489
```
490490

491-
Fragments are consumed by using the spread operator (`...`). All fields selected
491+
Fragments are consumed by using the spread operator (`...`). All fields selected
492492
by the fragment will be added to the query field selection at the same level
493493
as the fragment invocation. This happens through multiple levels of fragment
494494
spreads.
@@ -925,7 +925,7 @@ ObjectValue[Const] :
925925
ObjectField[Const] : Name : Value[?Const]
926926

927927
Input object literal values are unordered lists of keyed input values wrapped in
928-
curly-braces `{ }`. The values of an object literal may be any input value
928+
curly-braces `{ }`. The values of an object literal may be any input value
929929
literal or variable (ex. `{ name: "Hello world", score: 1.0 }`). We refer to
930930
literal representation of input objects as "object literals."
931931

spec/Section 3 -- Type System.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ they sometimes need to be more complex than this.
792792
The `Object` type defined above is inappropriate for re-use here, because
793793
`Object`s can contain fields that express circular references or references
794794
to interfaces and unions, neither of which is appropriate for use as an
795-
input argument. For this reason, input objects have a separate type in the
795+
input argument. For this reason, input objects have a separate type in the
796796
system.
797797

798798
An `Input Object` defines a set of input fields; the input fields are either

spec/Section 5 -- Validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ referenced.
934934
**Explanatory Text**
935935

936936
Named fragment spreads must refer to fragments defined
937-
within the document. If the target of a spread is
937+
within the document. If the target of a spread is
938938
not defined, this is an error:
939939

940940
```graphql counter-example

spec/Section 7 -- Response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ To ensure future changes to the protocol do not break existing servers and
104104
clients, the top level response map must not contain any entries other than the
105105
three described above.
106106

107-
Note: When `errors` is present in the response, it may be helpful for it to
107+
Note: When `errors` is present in the response, it may be helpful for it to
108108
appear first when serialized to make it more clear when errors are present
109109
in a response during debugging.
110110

0 commit comments

Comments
 (0)