Skip to content

Minor Updates #1723

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading