File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/thealgorithms/others Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ private IterativeFloodFill() {
3232 * Iteratively fill the 2D image with new color
3333 *
3434 * @param image The image to be filled
35- * @param x The x co-ordinate at which color is to be filled
36- * @param y The y co-ordinate at which color is to be filled
35+ * @param x The x coordinate at which color is to be filled
36+ * @param y The y coordinate at which color is to be filled
3737 * @param newColor The new color which to be filled in the image
3838 * @param oldColor The old color which is to be replaced in the image
3939 * @see <a href=https://www.geeksforgeeks.org/dsa/flood-fill-algorithm>FloodFill BFS<a/>
@@ -86,8 +86,8 @@ private static class Point {
8686 * Checks if a pixel should be skipped during flood fill operation.
8787 *
8888 * @param image The image to get boundaries
89- * @param x The x co-ordinate of pixel to check
90- * @param y The y co-ordinate of pixel to check
89+ * @param x The x coordinate of pixel to check
90+ * @param y The y coordinate of pixel to check
9191 * @param oldColor The old color which is to be replaced in the image
9292 * @return {@code true} if pixel should be skipped, else {@code false}
9393 */
You can’t perform that action at this time.
0 commit comments