Skip to content

Commit 775ae51

Browse files
authored
Fix spelling (graphql#1723)
* Update entity-graphql.md * Update graphqld.md * Update graphql-java-generator.md * Update jimmer.md * Update mp-graphql.md * Update mini-graphiQL.tsx * Update mini-graphiQL.tsx
1 parent fdf9ad1 commit 775ae51

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

src/code/language-support/c-net/server/entity-graphql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ github: EntityGraphQL/EntityGraphQL
66
---
77

88
```csharp
9-
// expose an exisiting data model with ASP.NET & EF Core
9+
// expose an existing data model with ASP.NET & EF Core
1010
public class Startup {
1111
public void ConfigureServices(IServiceCollection services)
1212
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
name: graphqld
3-
description: A GraphQL implementaiton for the D Programming Language.
3+
description: A GraphQL implementation for the D Programming Language.
44
github: burner/graphqld
55
---

src/code/language-support/java-kotlin-android/server/jimmer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ github: babyfish-ct/jimmer
1313

1414
3. Powerful and GraphQL friendly caching support.
1515

16-
4. Faster than other popular ORM solutions, please see the bechmark: https://babyfish-ct.github.io/jimmer/docs/benchmark/
16+
4. Faster than other popular ORM solutions, please see the benchmark: https://babyfish-ct.github.io/jimmer/docs/benchmark/
1717

1818
5. More powerful than other popular ORM solutions.
1919

src/code/language-support/java-kotlin-android/server/mp-graphql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ MP GraphQL features include:
1919
- Exception handling
2020
- Easy integration with Jakarta and MicroProfile technologies
2121

22-
Want to get started? Check out these resouces:
22+
Want to get started? Check out these resources:
2323

2424
- Learn how to [create and deploy a server side app in Open Liberty](https://openliberty.io/guides/microprofile-graphql.html).
2525
- Learn how to [create a client application in Open Liberty](https://openliberty.io/guides/graphql-client.html).

src/code/language-support/java-kotlin-android/tools/graphql-java-generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ github: graphql-java-generator/graphql-gradle-plugin-project
1313
A Gradle plugin is coming soon.
1414
Please note that GraphQL Java Generator is an accelerator: the generated code doesn’t depend on any library specific to GraphQL Java Generator.
1515
So, it helps you to start building application based on graphql-java. Once the code is generated, you can decide to manually edit it as any standard java application, and get rid of GraphQL Java Generator.
16-
Of course you can, and should, according to us :), continue using GraphQL Java Generator when your projet evolves.
16+
Of course you can, and should, according to us :), continue using GraphQL Java Generator when your project evolves.

src/components/marked/mini-graphiQL.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class QueryEditor extends Component {
204204
}
205205

206206
componentDidUpdate(prevProps) {
207-
// Ensure the changes caused by this update are not interpretted as
207+
// Ensure the changes caused by this update are not interpreted as
208208
// user-input changes which could otherwise result in an infinite
209209
// event loop.
210210
this.ignoreChangeEvent = true
@@ -397,7 +397,7 @@ class VariableEditor extends Component {
397397
componentDidUpdate(prevProps) {
398398
const CodeMirror = require("codemirror")
399399

400-
// Ensure the changes caused by this update are not interpretted as
400+
// Ensure the changes caused by this update are not interpreted as
401401
// user-input changes which could otherwise result in an infinite
402402
// event loop.
403403
this.ignoreChangeEvent = true
@@ -482,7 +482,7 @@ function onHasCompletion(cm, data, onHintInformationRender) {
482482
// CodeMirror vertically inverts the hint UI if there is not enough
483483
// space below the cursor. Since this modified UI appends to the bottom
484484
// of CodeMirror's existing UI, it could cover the cursor. This adjusts
485-
// the positioning of the hint UI to accomodate.
485+
// the positioning of the hint UI to accommodate.
486486
let top = hintsUl.style.top
487487
let bottom = ""
488488
const cursorTop = cm.cursorCoords().top

0 commit comments

Comments
 (0)