Skip to content

Commit

Permalink
Fix spelling (#1723)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
michaelg100 authored Jul 7, 2024
1 parent fdf9ad1 commit 775ae51
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/code/language-support/c-net/server/entity-graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ github: EntityGraphQL/EntityGraphQL
---

```csharp
// expose an exisiting data model with ASP.NET & EF Core
// expose an existing data model with ASP.NET & EF Core
public class Startup {
public void ConfigureServices(IServiceCollection services)
{
Expand Down
2 changes: 1 addition & 1 deletion src/code/language-support/d/server/graphqld.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: graphqld
description: A GraphQL implementaiton for the D Programming Language.
description: A GraphQL implementation for the D Programming Language.
github: burner/graphqld
---
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ github: babyfish-ct/jimmer

3. Powerful and GraphQL friendly caching support.

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

5. More powerful than other popular ORM solutions.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ MP GraphQL features include:
- Exception handling
- Easy integration with Jakarta and MicroProfile technologies

Want to get started? Check out these resouces:
Want to get started? Check out these resources:

- Learn how to [create and deploy a server side app in Open Liberty](https://openliberty.io/guides/microprofile-graphql.html).
- Learn how to [create a client application in Open Liberty](https://openliberty.io/guides/graphql-client.html).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ github: graphql-java-generator/graphql-gradle-plugin-project
A Gradle plugin is coming soon.
Please note that GraphQL Java Generator is an accelerator: the generated code doesn’t depend on any library specific to GraphQL Java Generator.
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.
Of course you can, and should, according to us :), continue using GraphQL Java Generator when your projet evolves.
Of course you can, and should, according to us :), continue using GraphQL Java Generator when your project evolves.
6 changes: 3 additions & 3 deletions src/components/marked/mini-graphiQL.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class QueryEditor extends Component {
}

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

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

0 comments on commit 775ae51

Please sign in to comment.