Skip to content

Commit 306b555

Browse files
authored
Documentation: Fix typos and a broken link (#831)
* Update broken link in spring-graphql-context.md * Fix the broken link again * Fix another broken link * Rollback adding .md extensions to links; fix a couple of typos
1 parent 65d6ba1 commit 306b555

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ See more info in [CONTRIBUTING.md](CONTRIBUTING.md)
6666

6767
## 🛡️ Security
6868

69-
For more info on how to contact the team for security issues or the supported versions that recieve security updates, see [SECURITY.md](./.github/SECURITY.md)
69+
For more info on how to contact the team for security issues or the supported versions that receive security updates, see [SECURITY.md](./.github/SECURITY.md)
7070

7171
## ⚖️ License
7272

docs/spring-server/spring-graphql-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ class MyGraphQLContextFactory: GraphQLContextFactory<MyGraphQLContext> {
3232
Once your application is configured to build your custom `MyGraphQLContext`, we can then specify it as function argument but it will not be included in the schema.
3333
While executing the query, the corresponding GraphQL context will be read from the environment and automatically injected to the function input arguments.
3434

35-
For more details see the [Contextual Data documentation](../execution/contextual-data).
35+
For more details see the [Contextual Data documentation](../schema-generator/execution/contextual-data).

graphql-kotlin-schema-generator/src/main/kotlin/com/expediagroup/graphql/execution/FunctionDataFetcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ open class FunctionDataFetcher(
116116
/**
117117
* Once all parameters values are properly converted, this function will be called to run a suspendable function.
118118
* If you need to override the exception handling you can override the entire method.
119-
* You can also call it from [get] with different values to override the default corotuine context or start parameter.
119+
* You can also call it from [get] with different values to override the default coroutine context or start parameter.
120120
*/
121121
protected open fun runSuspendingFunction(
122122
instance: Any,

0 commit comments

Comments
 (0)