Skip to content

Fix typo in README.md and the Testing section of docs #759

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

Closed
wants to merge 2 commits into from
Closed
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 @@ -9,7 +9,7 @@ This project is governed by the [Spring Code of Conduct](CODE_OF_CONDUCT.adoc).
## Documentation

This project has reference documentation ([published](https://docs.spring.io/spring-graphql/docs/current-SNAPSHOT/reference/html/) and [source](spring-graphql-docs/src/docs/asciidoc)), an
[API reference](https://docs.spring.io/spring-graphql/docs/current-SNAPSHOT/api/). The are [samples](https://github.com/spring-projects/spring-graphql/tree/1.0.x/samples) in the 1.0.x branch that will be [moved out](https://github.com/spring-projects/spring-graphql/issues/208) into a separate repository.
[API reference](https://docs.spring.io/spring-graphql/docs/current-SNAPSHOT/api/). There are [samples](https://github.com/spring-projects/spring-graphql/tree/1.0.x/samples) in the 1.0.x branch that will be [moved out](https://github.com/spring-projects/spring-graphql/issues/208) into a separate repository.

## Continuous Integration Builds

Expand Down
4 changes: 2 additions & 2 deletions spring-graphql-docs/src/docs/asciidoc/includes/testing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ following extensions:
To create a `GraphQlTester` that performs tests on the server side, without a client:

- <<testing.graphqlservicetester, ExecutionGraphQlServiceTester>>
- <<testing.webgraphqltester, WebGraphQlServiceTester>>
- <<testing.webgraphqltester, WebGraphQlTester>>

Each defines a `Builder` with options relevant to the transport. All builders extend
from a common, base GraphQlTester <<testing.graphqltester.builder, `Builder`>> with
Expand Down Expand Up @@ -263,7 +263,7 @@ The builder for this extension allows you to define HTTP request details:
.build();
----

Once `WebGraphQlServiceTester` is created, you can begin to
Once `WebGraphQlTester` is created, you can begin to
<<testing.requests, execute requests>> using the same API, independent of the underlying
transport.

Expand Down