@@ -108,7 +108,7 @@ public static <K, V> DataLoader<K, V> newDataLoader(BatchLoader<K, V> batchLoadF
108108 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
109109 * {@link org.dataloader.Try} objects.
110110 * <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
112112 * you can use this form to create the data loader.
113113 * <p>
114114 * 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>
186186 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
187187 * {@link org.dataloader.Try} objects.
188188 * <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
190190 * you can use this form to create the data loader.
191191 * <p>
192192 * 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
264264 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
265265 * {@link org.dataloader.Try} objects.
266266 * <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
268268 * you can use this form to create the data loader.
269269 * <p>
270270 * 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
343343 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
344344 * {@link org.dataloader.Try} objects.
345345 * <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
347347 * you can use this form to create the data loader.
348348 * <p>
349349 * 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) {
471471 * 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.
472472 * <p>
473473 * 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.
475475 * <p>
476476 * If caching is disabled there will never be a present Optional returned.
477477 * <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.
479479 *
480480 * @param key the key to check
481481 *
@@ -494,7 +494,7 @@ public Optional<CompletableFuture<V>> getIfPresent(K key) {
494494 * <p>
495495 * If caching is disabled there will never be a present Optional returned.
496496 * <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.
498498 *
499499 * @param key the key to check
500500 *
0 commit comments