Skip to content

Commit 5858c85

Browse files
update spelling across docs (#7752)
1 parent 82dd36a commit 5858c85

74 files changed

Lines changed: 152 additions & 152 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/web/docs/src/app/blog/(posts)/add-reactivity-to-an-existing-source/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ That's it!
168168
[playground](https://space-x-land-with-sub.herokuapp.com)
169169

170170
I'm now ready to work on the demo for
171-
[**Svelte Codegen**](https://github.com/ticruz38/graphql-codegen-svelte-apollo)! Stay tunned ;)
171+
[**Svelte Codegen**](https://github.com/ticruz38/graphql-codegen-svelte-apollo)! Stay tuned ;)
172172

173173
[@jycouet](https://twitter.com/jycouet)
174174

packages/web/docs/src/app/blog/(posts)/ci-ci-graphql-inspector/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ We want to make **Azure** and **Bitbucket** a first-class citizens in GraphQL In
7575
the same experience as you get right now with **GitHub**.
7676

7777
**Monitoring** will enable you to analyze the traffic of your GraphQL APIs and provide details
78-
needed to improve performance. Collecting informations about the usage will let you safely remove
78+
needed to improve performance. Collecting information about the usage will let you safely remove
7979
deprecated pieces of GraphQL Schema.
8080

8181
> If you're interested, please reach out to us!

packages/web/docs/src/app/blog/(posts)/graphql-code-generator-011/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export interface UserDbObject {
258258
```
259259

260260
There is also the need to handle the difference between embedded types and linked types, so you can
261-
use `@entity(embbeded: true)` and `@embbeded` to declare link and embedded entities:
261+
use `@entity(embedded: true)` and `@embedded` to declare link and embedded entities:
262262

263263
```graphql
264264
type User @entity {

packages/web/docs/src/app/blog/(posts)/graphql-codegen-best-practices/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ autocomplete inside `.graphql` files.
578578
GraphQL Code Generator plugins for frontend frameworks integrations (such as
579579
`typescript-react-apollo` / `typescript-apollo-angular`) are automatically creates an executable
580580
copy (`DocumentNode`) of your GraphQL operations in the generated code file, and it will
581-
automatically include it withing your wrapper call.
581+
automatically include it within your wrapper call.
582582

583583
It will add that to the output file with `Document` suffix, and `FragmentDoc` for fragments.
584584

packages/web/docs/src/app/blog/(posts)/graphql-cursor-pagination-with-postgresql/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ LIMIT
293293
+ | '8771195f-7a8a-4685-8e4e-ae45d017c11b' | 'Uri' | '2023-01-11T10:32:07.853915+00:00' |
294294
```
295295

296-
The only solution here is to also introduce another, truely unique, column to our cursor. In this
296+
The only solution here is to also introduce another, truly unique, column to our cursor. In this
297297
case we can utilize the `"id"` column.
298298

299299
So lets execute the SQL query, but now with both the `id` (`'628995bf-2907-49d1-a36f-978566a053c4'`)

packages/web/docs/src/app/blog/(posts)/graphql-deep-dive-1/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ request-response lifecycle strongly typed.
168168
For instance, there are some amazing projects from [**The Guild**](/) like
169169
[**GraphQL Codegen**](https://the-guild.dev/graphql/codegen) which we can use for generating types
170170
based on our local/remote schema with great Typescript integration, and you have a lot of
171-
plugins/recepies you can use along with it as well.
171+
plugins/recipes you can use along with it as well.
172172

173173
Want to generate Typescript objects based on GQL documents? You can try out
174174
[**Typed Document Node**](https://github.com/dotansimha/graphql-typed-document-node)

packages/web/docs/src/app/blog/(posts)/graphql-deep-dive-2/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If you are in the Kubernetes world, you also have a lot of ingress controllers l
7575
The first thing would be the entry point of all your GraphQL requests. Since GraphQL exposes a
7676
single endpoint e.g. `/graphql` this becomes the single entry point for all your operations.
7777

78-
But, I highly wouldn't recommend directly exposing your service to client since it can be unsecure,
78+
But, I highly wouldn't recommend directly exposing your service to client since it can be insecure,
7979
difficult to manage things like rate-limiting, load balancing and so on.
8080

8181
Rather, it is always recommended to expose it via an API Gateway of your choice. Be it Ambassador,
@@ -220,7 +220,7 @@ This applies not just to the GraphQL ecosystem, but anything you choose for that
220220
- Does it have a clear roadmap for the future? If so, what are the milestones?
221221
- What are the other alternatives? How does it compare to them?
222222
- How is the documentation? Does it have tests? Does it have examples which I can refer to?
223-
- Does it follow standards and is free of Vendor Lockin?
223+
- Does it follow standards and is free of Vendor Lock-in?
224224
- Are there any security concerns which this tool or library might create?
225225

226226
While not all of these questions might have been addressed by the library or tool well, what I see

packages/web/docs/src/app/blog/(posts)/graphql-deep-dive-3/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use case and building the development workflow which suits you best in this blog
2424

2525
Technology changes and evolves constantly as we have already seen it happening all these days. So,
2626
rather than worrying too much about the technology you choose, it is better to choose a tool,
27-
library or platform which allows for incremental changes without lockin. Using the list in the
27+
library or platform which allows for incremental changes without lock-in. Using the list in the
2828
[**previous blog post**](/blog/graphql-deep-dive-2) might actually help in your decision-making
2929
process.
3030

packages/web/docs/src/app/blog/(posts)/graphql-deep-dive-6/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ time.
5252

5353
The best way to avoid this is to put together a boilerplate with all that you would typically want
5454
to use and this can become a starting point of all the services you may develop in the future. This
55-
would also involve things like setting up your GraphQL Gateway (incase you are using something like
55+
would also involve things like setting up your GraphQL Gateway (in case you are using something like
5656
[Federation](https://the-guild.dev/graphql/hive/federation) or Stitching) since the gateway becomes
5757
the single point of contact for all your requests from the clients.
5858

packages/web/docs/src/app/blog/(posts)/graphql-over-internet/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ SSE is HTTP/1. HTTP/1 powered servers are limited to
184184
meaning you can only have 6 concurrently active subscriptions (compared to HTTP/2 powered servers
185185
that are by default limited to 100+ active connection per domain).
186186

187-
The "singe connection mode" creates a single connection to the server which is used exclusively for
187+
The "single connection mode" creates a single connection to the server which is used exclusively for
188188
streaming events and messages. Then you issue separate HTTP requests to execute operations. This
189189
property makes it safe for HTTP/1 environments, but also for subscription heavy apps even in HTTP/2
190190
environments (simply because subscriptions are typically best when really granular and this can

0 commit comments

Comments
 (0)