diff --git a/src/code/language-support/c-net/server/entity-graphql.md b/src/code/language-support/c-net/server/entity-graphql.md index e5a3438a7e..b54cfa6c71 100644 --- a/src/code/language-support/c-net/server/entity-graphql.md +++ b/src/code/language-support/c-net/server/entity-graphql.md @@ -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) { diff --git a/src/code/language-support/d/server/graphqld.md b/src/code/language-support/d/server/graphqld.md index c801c4832f..b674835879 100644 --- a/src/code/language-support/d/server/graphqld.md +++ b/src/code/language-support/d/server/graphqld.md @@ -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 --- diff --git a/src/code/language-support/java-kotlin-android/server/jimmer.md b/src/code/language-support/java-kotlin-android/server/jimmer.md index c7ac57e176..450b21691c 100644 --- a/src/code/language-support/java-kotlin-android/server/jimmer.md +++ b/src/code/language-support/java-kotlin-android/server/jimmer.md @@ -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. diff --git a/src/code/language-support/java-kotlin-android/server/mp-graphql.md b/src/code/language-support/java-kotlin-android/server/mp-graphql.md index 428f8f7219..ddf6faf3da 100644 --- a/src/code/language-support/java-kotlin-android/server/mp-graphql.md +++ b/src/code/language-support/java-kotlin-android/server/mp-graphql.md @@ -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). diff --git a/src/code/language-support/java-kotlin-android/tools/graphql-java-generator.md b/src/code/language-support/java-kotlin-android/tools/graphql-java-generator.md index 25d7b10a45..1fa4e4dc20 100644 --- a/src/code/language-support/java-kotlin-android/tools/graphql-java-generator.md +++ b/src/code/language-support/java-kotlin-android/tools/graphql-java-generator.md @@ -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. diff --git a/src/components/marked/mini-graphiQL.tsx b/src/components/marked/mini-graphiQL.tsx index a35f645034..b97aa859b9 100644 --- a/src/components/marked/mini-graphiQL.tsx +++ b/src/components/marked/mini-graphiQL.tsx @@ -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 @@ -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 @@ -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