@@ -53,7 +53,7 @@ public interface BatchLoaderRegistry extends DataLoaderRegistrar {
53
53
* <p>When this method is used, the name for the
54
54
* {@link org.dataloader.DataLoader} is automatically set as defined in
55
55
* {@link RegistrationSpec#withName(String)}, and likewise,
56
- * {@code @SchemaMapping} handler methods can transparenly locate and
56
+ * {@code @SchemaMapping} handler methods can transparently locate and
57
57
* inject a {@code DataLoader<T>} argument based on the generic type
58
58
* {@code <T>}.
59
59
* @param keyType the type of keys that will be used as input
@@ -116,7 +116,7 @@ interface RegistrationSpec<K, V> {
116
116
* Set the {@link DataLoaderOptions} to use to create the
117
117
* {@link org.dataloader.DataLoader} via {@link org.dataloader.DataLoaderFactory}.
118
118
* <p><strong>Note:</strong> Do not set
119
- * {@link DataLoaderOptions#setBatchLoaderContextProvider(BatchLoaderContextProvider)}
119
+ * {@link DataLoaderOptions.Builder #setBatchLoaderContextProvider(BatchLoaderContextProvider)}
120
120
* as this will be set later to a provider that returns the context from
121
121
* {@link ExecutionInput#getGraphQLContext()}, so that batch loading
122
122
* functions and data fetchers can rely on access to the same context.
@@ -126,7 +126,7 @@ interface RegistrationSpec<K, V> {
126
126
RegistrationSpec <K , V > withOptions (DataLoaderOptions options );
127
127
128
128
/**
129
- * Register the give batch loading function.
129
+ * Register the given batch loading function.
130
130
* <p>The values returned from the function must match the order and
131
131
* the number of keys, with {@code null} for missing values.
132
132
* Please, see {@link org.dataloader.BatchLoader}.
0 commit comments