From ee68bc3d9e27a3bd701955f0ef7969ffcd755176 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Mon, 2 Oct 2023 19:37:43 +0200 Subject: [PATCH] Fix 'ChunkCoordinatorBuilder#unloadAfter()' javadocs (#4194) --- .../com/plotsquared/core/queue/ChunkCoordinatorBuilder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java index 4f657f86a7..408cba8d09 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java @@ -183,7 +183,7 @@ public ChunkCoordinatorBuilder(@NonNull ChunkCoordinatorFactory chunkCoordinator * Set whether the chunks should be allow to unload after being accessed. This should only be used where the chunks are read from * and then written to from a separate queue where they're consequently unloaded. * - * @param unloadAfter if to unload chuns afterwards + * @param unloadAfter if to unload chunks afterwards * @return this ChunkCoordinatorBuilder instance */ public @NonNull ChunkCoordinatorBuilder unloadAfter(final boolean unloadAfter) {