Skip to content

Commit

Permalink
Merge pull request #174 from enisdenjo/patch-1
Browse files Browse the repository at this point in the history
docs: Fix a few typos in the README
  • Loading branch information
StevenACoffman authored Jan 26, 2022
2 parents 2a3d320 + dca6b8b commit c55e33b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ This is a parser for graphql, written to mirror the graphql-js reference impleme

spec target: June 2018 (Schema definition language, block strings as descriptions, error paths & extension)

This parser is used by [gqlgen](https://github.com/99designs/gqlgen), and it should be reasonablly stable.
This parser is used by [gqlgen](https://github.com/99designs/gqlgen), and it should be reasonably stable.

Guiding principles:

- maintainability: It should be easy to stay up to date with the spec
- well tested: It shouldnt need a graphql server to validate itself. Changes to this repo should be self contained.
- well tested: It shouldn't need a graphql server to validate itself. Changes to this repo should be self contained.
- server agnostic: It should be usable by any of the graphql server implementations, and any graphql client tooling.
- idiomatic & stable api: It should follow go best practices, especially around forwards compatibility.
- fast: Where it doesnt impact on the above it should be fast. Avoid unnecessary allocs in hot paths.
- close to reference: Where it doesnt impact on the above, it should stay close to the [graphql/graphql-js](https://github.com/graphql/graphql-js) reference implementation.
- fast: Where it doesn't impact on the above it should be fast. Avoid unnecessary allocs in hot paths.
- close to reference: Where it doesn't impact on the above, it should stay close to the [graphql/graphql-js](https://github.com/graphql/graphql-js) reference implementation.

0 comments on commit c55e33b

Please sign in to comment.