diff --git a/spring-graphql/src/main/java/org/springframework/graphql/execution/BatchLoaderRegistry.java b/spring-graphql/src/main/java/org/springframework/graphql/execution/BatchLoaderRegistry.java
index d783ffa2..0e73daab 100644
--- a/spring-graphql/src/main/java/org/springframework/graphql/execution/BatchLoaderRegistry.java
+++ b/spring-graphql/src/main/java/org/springframework/graphql/execution/BatchLoaderRegistry.java
@@ -53,7 +53,7 @@ public interface BatchLoaderRegistry extends DataLoaderRegistrar {
*
When this method is used, the name for the
* {@link org.dataloader.DataLoader} is automatically set as defined in
* {@link RegistrationSpec#withName(String)}, and likewise,
- * {@code @SchemaMapping} handler methods can transparenly locate and
+ * {@code @SchemaMapping} handler methods can transparently locate and
* inject a {@code DataLoader} argument based on the generic type
* {@code }.
* @param keyType the type of keys that will be used as input
diff --git a/spring-graphql/src/test/java/org/springframework/graphql/server/webmvc/GraphQlRequestPredicatesTests.java b/spring-graphql/src/test/java/org/springframework/graphql/server/webmvc/GraphQlRequestPredicatesTests.java
index 083b6dc4..c1316afb 100644
--- a/spring-graphql/src/test/java/org/springframework/graphql/server/webmvc/GraphQlRequestPredicatesTests.java
+++ b/spring-graphql/src/test/java/org/springframework/graphql/server/webmvc/GraphQlRequestPredicatesTests.java
@@ -189,7 +189,7 @@ void shouldRejectRequestWithDifferentPath() {
}
@Test
- void shouldRejectRequestWithIncmopatibleContentType() {
+ void shouldRejectRequestWithIncompatibleContentType() {
MockHttpServletRequest request = createMatchingSseRequest();
request.setContentType("text/xml");
ServerRequest serverRequest = ServerRequest.create(request, Collections.emptyList());