Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use only ASCII characters #429

Merged
merged 1 commit into from
Jul 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The reference implementation provides base libraries in JavaScript that would
provide the basis for full GraphQL implementations and tools. It is not a fully
standalone GraphQL server that a client developer could use to start
manipulating and querying data. Most importantly, it provides no mapping to a
functioning, production-ready backend. The only backend we have targeted for
functioning, production-ready backend. The only "backend" we have targeted for
this early preview are in-memory stubs in test cases.

We are releasing this now because after GraphQL was first discussed publicly,
Expand Down
2 changes: 1 addition & 1 deletion src/execution/execute.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ function promiseForObject<T>(
}

/**
* Implements the logic to compute the key of a given fields entry
* Implements the logic to compute the key of a given field's entry
*/
function getFieldEntryKey(node: Field): string {
return node.alias ? node.alias.value : node.name.value;
Expand Down
2 changes: 1 addition & 1 deletion src/type/introspection.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const __Directive = new GraphQLObjectType({
description:
'A Directive provides a way to describe alternate runtime execution and ' +
'type validation behavior in a GraphQL document.' +
'\n\nIn some cases, you need to provide options to alter GraphQLs ' +
'\n\nIn some cases, you need to provide options to alter GraphQL\'s ' +
'execution behavior in ways field arguments will not suffice, such as ' +
'conditionally including or skipping a field. Directives provide this by ' +
'describing additional information to the executor.',
Expand Down