From 9d0491c412820638c3a6d6902e0f70048e733a67 Mon Sep 17 00:00:00 2001 From: David Xu <62825020+dxaviud@users.noreply.github.com> Date: Sat, 3 Jul 2021 13:48:22 -0400 Subject: [PATCH] docs(website): reword landing page section sentence (#942) --- website/pages/en/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/en/index.js b/website/pages/en/index.js index dcfe4c2ad..80d767e2d 100644 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -170,7 +170,7 @@ const ResolversSection = props => ( { title: "Create resolvers", content: - "Implement queries and mutation just like a normal class methods! Dependency injection support and decorators abstraction provides great separation of business logic from the underlying transport layer.

That gives you really easy testability, so you can just provide mocks of dependencies to prevent side effects and unit test your resolvers like a simple services which methods only take some parameters and return results.", + "Implement queries and mutations as normal class methods! Dependency injection support and decorators abstraction provides great separation of business logic from the underlying transport layer.

That gives you really easy testability, so you can just provide mocks of dependencies to prevent side effects and unit test your resolvers like a simple services which methods only take some parameters and return results.", }, ]} />