From aa76d84397bc00047f9a1f23b98634bd80da9511 Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Fri, 13 Sep 2024 10:42:04 -0400 Subject: [PATCH] docs: fix grammar --- guides/testing/helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/testing/helpers.md b/guides/testing/helpers.md index 9ddc3423b8..f7e248f8ba 100644 --- a/guides/testing/helpers.md +++ b/guides/testing/helpers.md @@ -8,7 +8,7 @@ desc: Running GraphQL fields in isolation index: 3 --- -GraphQL-Ruby ships with a test helper method, `run_graphql_field`, that can execute a GraphQL field in isolation. It use it in your test suite, include a module, with your schema class: +GraphQL-Ruby ships with a test helper method, `run_graphql_field`, that can execute a GraphQL field in isolation. To use it in your test suite, include the module with your schema class: ```ruby # Mix in `run_graphql_field(...)` to run on `MySchema`