From a3717f0563e819c85d369d502ff03a0769d37593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Nam=20Kh=C3=A1nh?= <55955273+khanhkhanhlele@users.noreply.github.com> Date: Wed, 5 Nov 2025 16:43:02 +0700 Subject: [PATCH] chore: fix typos in src/main/java/com/thealgorithms/others/IterativeFloodFill.java (#7042) Fix typos in src/main/java/com/thealgorithms/others/IterativeFloodFill.java --- .../java/com/thealgorithms/others/IterativeFloodFill.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/thealgorithms/others/IterativeFloodFill.java b/src/main/java/com/thealgorithms/others/IterativeFloodFill.java index 3ef90369b..3f685f418 100644 --- a/src/main/java/com/thealgorithms/others/IterativeFloodFill.java +++ b/src/main/java/com/thealgorithms/others/IterativeFloodFill.java @@ -32,8 +32,8 @@ public final class IterativeFloodFill { * Iteratively fill the 2D image with new color * * @param image The image to be filled - * @param x The x co-ordinate at which color is to be filled - * @param y The y co-ordinate at which color is to be filled + * @param x The x coordinate at which color is to be filled + * @param y The y coordinate at which color is to be filled * @param newColor The new color which to be filled in the image * @param oldColor The old color which is to be replaced in the image * @see FloodFill BFS @@ -86,8 +86,8 @@ public final class IterativeFloodFill { * Checks if a pixel should be skipped during flood fill operation. * * @param image The image to get boundaries - * @param x The x co-ordinate of pixel to check - * @param y The y co-ordinate of pixel to check + * @param x The x coordinate of pixel to check + * @param y The y coordinate of pixel to check * @param oldColor The old color which is to be replaced in the image * @return {@code true} if pixel should be skipped, else {@code false} */