Skip to content

Commit 9a96fc4

Browse files
Editorial: Clarity about subject being a GraphQL service or system (#965)
Rather than simply "GraphQL" clarity on "A GraphQL service" or in one case, a system of services. Co-authored-by: Roman Ivantsov <[email protected]> Co-authored-by: Roman Ivantsov <[email protected]>
1 parent 57bd86d commit 9a96fc4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spec/Section 5 -- Validation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Validation
22

3-
GraphQL does not just verify if a request is syntactically correct, but also
4-
ensures that it is unambiguous and mistake-free in the context of a given
5-
GraphQL schema.
3+
A GraphQL service does not just verify if a request is syntactically correct,
4+
but also ensures that it is unambiguous and mistake-free in the context of a
5+
given GraphQL schema.
66

77
An invalid request is still technically executable, and will always produce a
88
stable result as defined by the algorithms in the Execution section, however

spec/Section 6 -- Execution.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Execution
22

3-
GraphQL generates a response from a request via execution.
3+
A GraphQL service generates a response from a request via execution.
44

55
:: A _request_ for execution consists of a few pieces of information:
66

@@ -174,7 +174,7 @@ Subscribe(subscription, schema, variableValues, initialValue):
174174
{MapSourceToResponseEvent(sourceStream, subscription, schema, variableValues)}
175175
- Return {responseStream}.
176176

177-
Note: In large scale subscription systems, the {Subscribe()} and
177+
Note: In a large-scale subscription system, the {Subscribe()} and
178178
{ExecuteSubscriptionEvent()} algorithms may be run on separate services to
179179
maintain predictable scaling properties. See the section below on Supporting
180180
Subscriptions at Scale.

0 commit comments

Comments
 (0)