Skip to content

Commit

Permalink
Merge pull request #429 from kassens/ascii
Browse files Browse the repository at this point in the history
Use only ASCII characters
  • Loading branch information
dschafer committed Jul 11, 2016
2 parents 826cba3 + 6782030 commit a73e180
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit a73e180

Please sign in to comment.