From c674548e649e2dd9f5b9ca9fdf2b5953d896f4db Mon Sep 17 00:00:00 2001 From: Hofer-Julian <30049909+Hofer-Julian@users.noreply.github.com> Date: Thu, 4 Apr 2024 13:50:35 +0200 Subject: [PATCH] Fix sentence in introduction (#1250) Co-authored-by: Kai Ren --- book/src/introduction.md | 2 +- juniper/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/introduction.md b/book/src/introduction.md index d4c55b56..c23e773c 100644 --- a/book/src/introduction.md +++ b/book/src/introduction.md @@ -3,7 +3,7 @@ Introduction > [GraphQL] is a query language for APIs and a runtime for fulfilling those queries with your existing data. [GraphQL] provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools. -[Juniper] is a library for creating [GraphQL] servers in [Rust]. Build type-safe and fast API servers with minimal boilerplate and configuration (we do try to make declaring and resolving [GraphQL] schemas as convenient as possible as [Rust] will allow). +[Juniper] is a library for creating [GraphQL] servers in [Rust]. Build type-safe and fast API servers with minimal boilerplate and configuration (we do try to make declaring and resolving [GraphQL] schemas as convenient as [Rust] will allow). [Juniper] doesn't include a web server itself, instead, it provides building blocks to make integration with existing web servers straightforward. It optionally provides a pre-built integration for some widely used web server frameworks in [Rust] ecosystem. diff --git a/juniper/README.md b/juniper/README.md index f6473843..cdcecf8c 100644 --- a/juniper/README.md +++ b/juniper/README.md @@ -12,7 +12,7 @@ Juniper (GraphQL server library for Rust) [GraphQL] is a data query language developed by [Facebook] and intended to serve mobile and web application frontends. -*[Juniper]* makes it possible to write [GraphQL] servers in [Rust] that are type-safe and blazingly fast. We also try to make declaring and resolving [GraphQL] schemas as convenient as possible as [Rust] will allow. +*[Juniper]* makes it possible to write [GraphQL] servers in [Rust] that are type-safe and blazingly fast. We also try to make declaring and resolving [GraphQL] schemas as convenient as [Rust] will allow. [Juniper] doesn't include a web server - instead it provides building blocks to make integration with existing servers straightforward, including embedded [GraphiQL] and/or [GraphQL Playground] for easy debugging.