@@ -108,7 +108,7 @@ public static <K, V> DataLoader<K, V> newDataLoader(BatchLoader<K, V> batchLoadF
108
108
* (batching, caching and unlimited batch size) where the batch loader function returns a list of
109
109
* {@link org.dataloader.Try} objects.
110
110
* <p>
111
- * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
111
+ * If it's important you to know the exact status of each item in a batch call and whether it threw exceptions then
112
112
* you can use this form to create the data loader.
113
113
* <p>
114
114
* Using Try objects allows you to capture a value returned or an exception that might
@@ -186,7 +186,7 @@ public static <K, V> DataLoader<K, V> newDataLoader(BatchLoaderWithContext<K, V>
186
186
* (batching, caching and unlimited batch size) where the batch loader function returns a list of
187
187
* {@link org.dataloader.Try} objects.
188
188
* <p>
189
- * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
189
+ * If it's important you to know the exact status of each item in a batch call and whether it threw exceptions then
190
190
* you can use this form to create the data loader.
191
191
* <p>
192
192
* Using Try objects allows you to capture a value returned or an exception that might
@@ -264,7 +264,7 @@ public static <K, V> DataLoader<K, V> newMappedDataLoader(MappedBatchLoader<K, V
264
264
* (batching, caching and unlimited batch size) where the batch loader function returns a list of
265
265
* {@link org.dataloader.Try} objects.
266
266
* <p>
267
- * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
267
+ * If it's important you to know the exact status of each item in a batch call and whether it threw exceptions then
268
268
* you can use this form to create the data loader.
269
269
* <p>
270
270
* Using Try objects allows you to capture a value returned or an exception that might
@@ -343,7 +343,7 @@ public static <K, V> DataLoader<K, V> newMappedDataLoader(MappedBatchLoaderWithC
343
343
* (batching, caching and unlimited batch size) where the batch loader function returns a list of
344
344
* {@link org.dataloader.Try} objects.
345
345
* <p>
346
- * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
346
+ * If it's important you to know the exact status of each item in a batch call and whether it threw exceptions then
347
347
* you can use this form to create the data loader.
348
348
* <p>
349
349
* Using Try objects allows you to capture a value returned or an exception that might
@@ -471,11 +471,11 @@ public CompletableFuture<V> load(K key) {
471
471
* This will return an optional promise to a value previously loaded via a {@link #load(Object)} call or empty if not call has been made for that key.
472
472
* <p>
473
473
* If you do get a present CompletableFuture it does not mean it has been dispatched and completed yet. It just means
474
- * its at least pending and in cache.
474
+ * it's at least pending and in cache.
475
475
* <p>
476
476
* If caching is disabled there will never be a present Optional returned.
477
477
* <p>
478
- * NOTE : This will NOT cause a data load to happen. You must called {@link #load(Object)} for that to happen.
478
+ * NOTE : This will NOT cause a data load to happen. You must call {@link #load(Object)} for that to happen.
479
479
*
480
480
* @param key the key to check
481
481
*
@@ -494,7 +494,7 @@ public Optional<CompletableFuture<V>> getIfPresent(K key) {
494
494
* <p>
495
495
* If caching is disabled there will never be a present Optional returned.
496
496
* <p>
497
- * NOTE : This will NOT cause a data load to happen. You must called {@link #load(Object)} for that to happen.
497
+ * NOTE : This will NOT cause a data load to happen. You must call {@link #load(Object)} for that to happen.
498
498
*
499
499
* @param key the key to check
500
500
*
0 commit comments