Skip to content

Commit d8098ba

Browse files
committed
Fix javadoc generation after graphql-java upgrade
See gh-1282
1 parent ec3e48e commit d8098ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-graphql/src/main/java/org/springframework/graphql/execution/BatchLoaderRegistry.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public interface BatchLoaderRegistry extends DataLoaderRegistrar {
5353
* <p>When this method is used, the name for the
5454
* {@link org.dataloader.DataLoader} is automatically set as defined in
5555
* {@link RegistrationSpec#withName(String)}, and likewise,
56-
* {@code @SchemaMapping} handler methods can transparenly locate and
56+
* {@code @SchemaMapping} handler methods can transparently locate and
5757
* inject a {@code DataLoader<T>} argument based on the generic type
5858
* {@code <T>}.
5959
* @param keyType the type of keys that will be used as input
@@ -116,7 +116,7 @@ interface RegistrationSpec<K, V> {
116116
* Set the {@link DataLoaderOptions} to use to create the
117117
* {@link org.dataloader.DataLoader} via {@link org.dataloader.DataLoaderFactory}.
118118
* <p><strong>Note:</strong> Do not set
119-
* {@link DataLoaderOptions#setBatchLoaderContextProvider(BatchLoaderContextProvider)}
119+
* {@link DataLoaderOptions.Builder#setBatchLoaderContextProvider(BatchLoaderContextProvider)}
120120
* as this will be set later to a provider that returns the context from
121121
* {@link ExecutionInput#getGraphQLContext()}, so that batch loading
122122
* functions and data fetchers can rely on access to the same context.
@@ -126,7 +126,7 @@ interface RegistrationSpec<K, V> {
126126
RegistrationSpec<K, V> withOptions(DataLoaderOptions options);
127127

128128
/**
129-
* Register the give batch loading function.
129+
* Register the given batch loading function.
130130
* <p>The values returned from the function must match the order and
131131
* the number of keys, with {@code null} for missing values.
132132
* Please, see {@link org.dataloader.BatchLoader}.

0 commit comments

Comments
 (0)